@charset "UTF-8";
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

html{
	scroll-behavior: smooth!important;
}
.not-selectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.carousel {
    position: relative;
    box-sizing: border-box
}

.carousel *,
.carousel :after,
.carousel :before {
    box-sizing: inherit
}

.carousel.is-draggable {
    cursor: move;
    cursor: grab
}

.carousel.is-dragging {
    cursor: move;
    cursor: grabbing
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y
}

.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: .25;
    transition: opacity .15s ease-in-out
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1
}

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity .15s ease
}

.carousel__button.is-next,
.carousel__button.is-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.carousel__button.is-prev {
    left: 10px
}

.carousel__button.is-next {
    right: 10px
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3
}

.carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none
}

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, var(--bs-white));
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    z-index: 1050;
    outline: 0;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))
}

.fancybox__container *,
.fancybox__container ::after,
.fancybox__container ::before {
    box-sizing: inherit
}

.fancybox__container :focus {
    outline: 0
}

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px var(--bs-white), 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, .94))
}

@media all and (min-width:1024px) {
    .fancybox__container {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, .92))
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px
}

.fancybox__slide::after,
.fancybox__slide::before {
    content: "";
    flex: 0 0 0;
    margin: auto
}

@media all and (min-width:1024px) {
    .fancybox__slide {
        padding: 64px 100px
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, var(--bs-white));
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: thin dotted;
    box-shadow: none
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container>.carousel__dots {
    top: 100%;
    color: var(--fancybox-color, var(--bs-white))
}

.fancybox__nav .carousel__button {
    z-index: 40
}

.fancybox__nav .carousel__button.is-next {
    right: 8px
}

@media all and (min-width:1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

@media all and (min-width:1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left: 40px
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40
}

@media all and (min-width:1024px) {
    .carousel__button.is-close {
        right: 40px
    }
}

.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, var(--bs-white))
}

.fancybox__no-click,
.fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor)
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: fancybox-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: currentColor
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

.carousel__button.is-close,
.carousel__dots,
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav {
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close,
.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav {
    animation: .15s ease backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .carousel__button.is-close,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav {
    animation: .15s ease both fancybox-fadeOut
}

.fancybox-fadeIn {
    animation: .15s ease both fancybox-fadeIn
}

.fancybox-fadeOut {
    animation: .1s ease both fancybox-fadeOut
}

.fancybox-zoomInUp {
    animation: .2s ease both fancybox-zoomInUp
}

.fancybox-zoomOutDown {
    animation: .15s ease both fancybox-zoomOutDown
}

.fancybox-throwOutUp {
    animation: .15s ease both fancybox-throwOutUp
}

.fancybox-throwOutDown {
    animation: .15s ease both fancybox-throwOutDown
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(.97) translate3d(0, 16px, 0);
        opacity: 0
    }

    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(.97) translate3d(0, 16px, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0, -30%, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0, 30%, 0);
        opacity: 0
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: var(--bs-gray-300) rgba(255, 255, 255, .1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: var(--bs-gray-300);
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, .2)
}

.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__image {
    transform-origin: 0 0;
    touch-action: none;
    user-select: none;
    transition: none
}

.has-image .fancybox__content {
    padding: 0;
    background: 0 0;
    min-height: 1px
}

.is-closing .has-image .fancybox__content {
    overflow: visible
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=contain] .fancybox__content {
    flex-direction: row;
    flex-wrap: wrap
}

.has-image[data-image-fit=contain] .fancybox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto
}

.has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto
}

.has-image[data-image-fit=contain-w] .fancybox__image {
    max-width: 100%;
    height: auto
}

.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none
}

.has-image[data-image-fit=cover] .fancybox__content {
    width: 100%;
    height: 100%
}

.has-image[data-image-fit=cover] .fancybox__image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, .9);
    color: var(--bs-text)
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: 0 0
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0 3px;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(1, 210, 232, .94));
    opacity: 0;
    transition: opacity .15s ease;
    border-radius: var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: .92
}

.fancybox__thumbs .carousel__slide>* {
    pointer-events: none;
    user-select: none
}

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255, 255, 255, .1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .006) 8.1%, rgba(0, 0, 0, .021) 15.5%, rgba(0, 0, 0, .046) 22.5%, rgba(0, 0, 0, .077) 29%, rgba(0, 0, 0, .114) 35.3%, rgba(0, 0, 0, .155) 41.2%, rgba(0, 0, 0, .198) 47.1%, rgba(0, 0, 0, .242) 52.9%, rgba(0, 0, 0, .285) 58.8%, rgba(0, 0, 0, .326) 64.7%, rgba(0, 0, 0, .363) 71%, rgba(0, 0, 0, .394) 77.5%, rgba(0, 0, 0, .419) 84.5%, rgba(0, 0, 0, .434) 91.9%, rgba(0, 0, 0, .44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .4))
}

@media all and (min-width:1024px) {
    .fancybox__toolbar {
        padding: 8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__toolbar__items--left {
    margin-right: auto
}

.fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.fancybox__toolbar__items--right {
    margin-left: auto
}

@media(max-width:640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display: none
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
    background: var(--fancybox-accent-color, rgba(1, 210, 232, .94));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__button--slideshow g:nth-child(2) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}

:root {
    --bs-black: #000;
    --bs-blue: #0076BF;
    --bs-indigo: #6610f2;
    --bs-purple: #AC5B9D;
    --bs-pink: #d63384;
    --bs-red: #E52D20;
    --bs-orange: #f77236;
    --bs-yellow: #ffc107;
    --bs-green: #1E352D;
    --bs-teal: #20c997;
    --bs-cyan: #0970C7;
    --bs-white: #FFFFFF;
    --bs-gray: #919191;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #CECECE;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #919191;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary-lighter: #f88754;
    --bs-primary-lightest: #f98e5e;
    --bs-primary: #f77236;
    --bs-primary-darkest: #c65b2b;
    --bs-primary-dark: #de6731;
    --bs-primary-light: #f8804a;
    --bs-secondary: #1e352d;
    --bs-secondary-light: #265a36;
    --bs-text: #ffffff;
    --bs-footer: #cecece;
    --bs-footer-text: #19191E;
    --bs-respond: #B48240;
    --bs-success: #1E352D;
    --bs-info: #0970C7;
    --bs-warning: #ffc107;
    --bs-danger: #E52D20;
    --bs-light: #F6F6F6;
    --bs-dark: #19191E;
    --bs-primary-rgb: 247, 114, 54;
    --bs-primary-dark-rgb: 222, 103, 49;
    --bs-secondary-rgb: 30, 53, 45;
    --bs-secondary-light-rgb: 38, 90, 54;
    --bs-success-rgb: 30, 53, 45;
    --bs-info-rgb: 9, 112, 199;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 229, 45, 32;
    --bs-light-rgb: 246, 246, 246;
    --bs-dark-rgb: 25, 25, 30;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 25, 25, 30;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(-180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: Poppins, system-ui, -apple-system, Segoe UI, roboto, Helvetica Neue, arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --bs-body-font-size: 1.7rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.8;
    --bs-body-color: #19191E;
    --bs-body-bg: #FFFFFF
}

*,
::after,
::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

.h1,
.h2,
.h3,
.h4,
.h6,
h1,
h2,
h3,
h4,
h6 {
    margin-top: 0;
    margin-bottom: .25rem;
    font-weight: 500;
    line-height: 1.2
}

.h1,
h1 {
    font-size: calc(1.55rem + 3.6vw)
}

@media (min-width:1200px) {

    .h1,
    h1 {
        font-size: 4.25rem
    }
}

.h2,
h2 {
    font-size: calc(1.465rem + 2.58vw)
}

@media (min-width:1200px) {

    .h2,
    h2 {
        font-size: 3.4rem
    }
}

.h3,
h3 {
    font-size: calc(1.4225rem + 2.07vw)
}

@media (min-width:1200px) {

    .h3,
    h3 {
        font-size: 2.975rem
    }
}

.h4,
h4 {
    font-size: calc(1.38rem + 1.56vw)
}

@media (min-width:1200px) {

    .h4,
    h4 {
        font-size: 2.55rem
    }
}

.h6,
h6 {
    font-size: calc(1.295rem + .54vw)
}

@media (min-width:1200px) {

    .h6,
    h6 {
        font-size: 1.7rem
    }
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

ul {
    padding-left: 2rem
}

ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ul ul {
    margin-bottom: 0
}

b {
    font-weight: 700
}

a {
    color: var(--bs-primary);
    text-decoration: underline
}

a:hover {
    color: var(--bs-primary-darkest)
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

/* table {
    caption-side: bottom;
    border-collapse: collapse
} */

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: var(--bs-gray-600);
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

textarea {
    resize: vertical
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

output {
    display: inline-block
}

[hidden] {
    display: none !important
}

.figure {
    display: inline-block
}

.container,
.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container {
        max-width: 1220px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.g-0 {
    --bs-gutter-x: 0
}

.g-0 {
    --bs-gutter-y: 0
}

.g-1 {
    --bs-gutter-x: 0.5rem
}

.g-1 {
    --bs-gutter-y: 0.5rem
}

.g-2 {
    --bs-gutter-x: 1rem
}

.g-2 {
    --bs-gutter-y: 1rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1.5rem
}

.g-3 {
    --bs-gutter-y: 1.5rem
}

.g-4 {
    --bs-gutter-x: 2rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 2rem
}

.g-6 {
    --bs-gutter-x: 3rem
}

.g-6 {
    --bs-gutter-y: 3rem
}

.g-8 {
    --bs-gutter-x: 4rem
}

.g-8 {
    --bs-gutter-y: 4rem
}

.gy-12 {
    --bs-gutter-y: 6rem
}

@media (min-width:576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

}

@media (min-width:768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:992px) {
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .g-lg-6 {
        --bs-gutter-x: 3rem
    }

    .g-lg-6,
    .gy-lg-6 {
        --bs-gutter-y: 3rem
    }

    .gx-lg-8 {
        --bs-gutter-x: 4rem
    }

    .g-lg-10 {
        --bs-gutter-x: 5rem
    }

    .g-lg-10 {
        --bs-gutter-y: 5rem
    }

    .g-lg-12 {
        --bs-gutter-x: 6rem
    }

    .g-lg-12 {
        --bs-gutter-y: 6rem
    }

    .gy-lg-32 {
        --bs-gutter-y: 16rem
    }
}

@media (min-width:1200px) {
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .g-xl-3 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-3 {
        --bs-gutter-y: 1.5rem
    }
}

@media (min-width:1400px) {
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .g-xxl-12 {
        --bs-gutter-x: 6rem
    }

    .g-xxl-12 {
        --bs-gutter-y: 6rem
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-dark);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-dark);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-dark);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: .5rem;
    color: var(--bs-dark);
    vertical-align: top;
    border-color: var(--bs-gray-300)
}

.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table>:not(:first-child) {
    border-top: 2px solid currentColor
}


section.section-custom.section-text-image div.text-white>p>a {
    color: var(--bs-text);
}


.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    color: var(--bs-dark);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 2rem 4rem;
    font-size: calc(1.295rem + .54vw);
    border-radius: 3rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (min-width:1200px) {
    .btn {
        font-size: 1.7rem
    }
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: var(--bs-dark)
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(247, 114, 54, .25)
}

.btn:disabled {
    pointer-events: none;
    opacity: .65
}

.btn-primary {
    color: var(--bs-black);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary)
}

.btn-primary:hover {
    color: var(--bs-black);
    background-color: var(--bs-primary-lighter);
    border-color: var(--bs-primary-light)
}

.btn-primary:focus {
    color: var(--bs-black);
    background-color: var(--bs-primary-lighter);
    border-color: var(--bs-primary-light);
    box-shadow: 0 0 0 .25rem rgb(var(--bs-primary-dark-rgb))
}

.btn-primary:active {
    color: var(--bs-black);
    background-color: var(--bs-primary-lightest) !important;
    border-color: var(--bs-primary-light) !important
}

.btn-primary:active:focus {
    box-shadow: 0 0 0 .25rem rgb(var(--bs-primary-dark-rgb))
}

.btn-primary:disabled {
    color: var(--bs-black);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary)
}

.btn-light {
    color: var(--bs-black);
    background-color: var(--bs-light);
    border-color: var(--bs-light)
}

.btn-light:hover {
    color: var(--bs-black);
    background-color: #f7f7f7;
    border-color: #f7f7f7
}

.btn-light:focus {
    color: var(--bs-black);
    background-color: #f7f7f7;
    border-color: #f7f7f7;
    box-shadow: 0 0 0 .25rem rgba(209, 209, 209, .5)
}

.btn-light:active {
    color: var(--bs-black);
    background-color: #f8f8f8;
    border-color: #f7f7f7
}

.btn-light:active:focus {
    box-shadow: 0 0 0 .25rem rgba(209, 209, 209, .5)
}

.btn-light:disabled {
    color: var(--bs-black);
    background-color: var(--bs-light);
    border-color: var(--bs-light)
}

.btn-link {
    font-weight: 500;
    color: var(--bs-text);
    text-decoration: underline
}

.btn-link-secondary {
    font-weight: 500;
    color: var(--bs-primary);
    text-decoration: underline
}

/* .btn-link:hover {
    color: var(--bs-primary)
} */

.btn-link-secondary:hover {
    color: var(--bs-primary)
}

.btn-link:disabled {
    color: var(--bs-gray-600)
}

.btn-sm {
    padding: .8rem 3.2rem;
    font-size: calc(1.265rem + .18vw);
    border-radius: 2rem
}

@media (min-width:1200px) {
    .btn-sm {
        font-size: 1.4rem
    }
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown {
    position: relative
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: var(--bs-primary);
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:focus,
.nav-link:hover {
    color: var(--bs-primary-darkest)
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .25rem;
    padding-bottom: .25rem
}

.navbar>.container,
.navbar>.container-fluid {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: calc(1.295rem + .54vw);
    color: var(--bs-dark);
    text-align: left;
    background-color: var(--bs-white);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease
}

@media (min-width:1200px) {
    .accordion-button {
        font-size: 1.7rem
    }
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary-dark);
    background-color: #fef1eb;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125)
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23de6731'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg)
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2319191E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button::after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    z-index: 3;
    border-color: #fbb99b;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(247, 114, 54, .25)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item {
    background-color: var(--bs-white);
    border: 1px solid rgba(0, 0, 0, .125)
}

.accordion-item:first-of-type {
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(3rem - 1px);
    border-top-right-radius: calc(3rem - 1px)
}

.accordion-item:not(:first-of-type) {
    border-top: 0
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 3rem;
    border-bottom-left-radius: 3rem
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(3rem - 1px);
    border-bottom-left-radius: calc(3rem - 1px)
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 3rem;
    border-bottom-left-radius: 3rem
}

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0
}

.accordion-flush .accordion-item:first-child {
    border-top: 0
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none
}

.alert {
    position: relative;
    padding: .5rem .5rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 3rem
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, .85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: 0 1.5rem 4rem rgba(25, 25, 30, .05);
    border-radius: 3rem
}

.toast.showing {
    opacity: 0
}

.toast:not(.show) {
    display: none
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: calc(1.27375rem + .285vw);
    word-wrap: break-word;
    opacity: 0
}

@media (min-width:1200px) {
    .tooltip {
        font-size: 1.4875rem
    }
}

.tooltip.show {
    opacity: .9
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", roboto, "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: calc(1.27375rem + .285vw);
    word-wrap: break-word;
    background-color: var(--bs-white);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4rem
}

@media (min-width:1200px) {
    .popover {
        font-size: 1.4875rem
    }
}

.carousel {
    position: relative
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,
.carousel-item-prev {
    display: block
}

.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: var(--bs-white);
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .offcanvas {
        transition: none
    }
}

.offcanvas.show {
    transform: none
}



.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentColor;
    opacity: .5
}

.placeholder.btn::before {
    display: inline-block;
    content: ""
}

@keyframes placeholder-glow {
    50% {
        opacity: .2
    }
}

@keyframes placeholder-wave {
    100% {
        -webkit-mask-position: -200% 0;
        mask-position: -200% 0
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.overflow-hidden {
    overflow: hidden !important
}

.d-block {
    display: block !important
}

.d-flex {
    display: flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 1.5rem 4rem rgba(25, 25, 30, .05) !important
}

.shadow-sm {
    box-shadow: 0 1rem 2rem rgba(25, 25, 30, .08) !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.bottom-0 {
    bottom: 0 !important
}

.start-0 {
    left: 0 !important
}

.end-0 {
    right: 0 !important
}

.border {
    border: 1px solid var(--bs-gray-300) !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid var(--bs-gray-300) !important
}

.border-bottom {
    border-bottom: 1px solid var(--bs-gray-300) !important
}

.w-100 {
    width: 100% !important
}

.h-100 {
    height: 100% !important
}

.flex-column {
    flex-direction: column !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.m-0 {
    margin: 0 !important
}

.mx-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.my-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important
}

.mt-0 {
    margin-top: 0rem !important
}

.mt-2 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 2rem !important
}

.mt-6 {
    margin-top: 3rem !important
}

.mt-10 {
    margin-top: 5rem !important
}

.mt-12 {
    margin-top: 6rem !important
}

.me-2 {
    margin-right: 1rem !important
}

.me-3 {
    margin-right: 1.5rem !important
}

.me-4 {
    margin-right: 2rem !important
}

.me-5 {
    margin-right: 2.5rem !important
}

.me-6 {
    margin-right: 3rem !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .5rem !important
}

.mb-2 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 2rem !important
}

.mb-6 {
    margin-bottom: 3rem !important
}

.mb-8 {
    margin-bottom: 4rem !important
}

.mb-10 {
    margin-bottom: 5rem !important
}

.ms-1 {
    margin-left: .5rem !important
}

.ms-2 {
    margin-left: 1rem !important
}

.p-0 {
    padding: 0 !important
}

.p-3 {
    padding: 1.5rem !important
}

.p-4 {
    padding: 2rem !important
}

.p-6 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0rem !important;
    padding-left: 0rem !important
}

.px-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important
}

.px-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.py-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
}

.py-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
}

.py-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
}

.py-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-4 {
    padding-top: 2rem !important
}

.pt-6 {
    padding-top: 3rem !important
}

.pt-16 {
    padding-top: 8rem !important
}

.pb-4 {
    padding-bottom: 2rem !important
}

.pb-6 {
    padding-bottom: 3rem !important
}

.pb-8 {
    padding-bottom: 4rem !important
}

.pb-10 {
    padding-bottom: 5rem !important
}

.pb-12 {
    padding-bottom: 6rem !important
}

.pb-16 {
    padding-bottom: 8rem !important
}

.fw-skinny {
    font-weight: 300 !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 600 !important
}

.text-start {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important
}

.text-secondary {
    --bs-text-opacity: 1;
    color: var(--bs-secondary) !important
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important
}

.text-white {
    --bs-text-opacity: 1;
    color: var(--bs-text) !important
}

.text-muted {
    --bs-text-opacity: 1;
    color: var(--bs-gray-600) !important
}

.fill-primary {
    fill: var(--bs-primary);
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: var(--bs-secondary) !important
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
}

.rounded {
    border-radius: 3rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: 2rem !important
}

.rounded-3 {
    border-radius: 4rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.px-1 {
    padding: 0 0.5em 0 0.5em;
}

.min-w-fit {
    min-width: fit-content !important;
}

@media (min-width:576px) {
    .d-sm-block {
        display: block !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .me-sm-4 {
        margin-right: 2rem !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .pt-sm-6 {
        padding-top: 3rem !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {
    .d-md-flex {
        display: flex !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .me-md-4 {
        margin-right: 2rem !important
    }
}

@media (min-width:992px) {
    .d-lg-block {
        display: block !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .my-lg-24 {
        margin-top: 12rem !important;
        margin-bottom: 12rem !important
    }

    .mt-lg-6 {
        margin-top: 3rem !important
    }

    .mt-lg-20 {
        margin-top: 10rem !important
    }

    .mt-lg-26 {
        margin-top: 13rem !important
    }

    .mb-lg-8 {
        margin-bottom: 4rem !important
    }

    .mb-lg-12 {
        margin-bottom: 6rem !important
    }

    .mb-lg-40 {
        margin-bottom: 20rem !important
    }

    .ms-lg-2 {
        margin-left: 1rem !important
    }

    .p-lg-6 {
        padding: 3rem !important
    }

    .p-lg-10 {
        padding: 5rem !important
    }

    .p-lg-16 {
        padding: 8rem !important
    }

    .px-lg-6 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .px-lg-8 {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }

    .px-lg-10 {
        padding-right: 5rem !important;
        padding-left: 5rem !important
    }

    .px-lg-20 {
        padding-right: 10rem !important;
        padding-left: 10rem !important
    }

    .py-lg-4 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }

    .py-lg-7 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important
    }

    .py-lg-8 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }

    .py-lg-10 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important
    }

    .py-lg-12 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }

    .py-lg-24 {
        padding-top: 12rem !important;
        padding-bottom: 12rem !important
    }

    .pt-lg-12 {
        padding-top: 6rem !important
    }

    .pt-lg-24 {
        padding-top: 12rem !important
    }

    .pb-lg-6 {
        padding-bottom: 3rem !important
    }

    .pb-lg-10 {
        padding-bottom: 5rem !important
    }

    .pb-lg-16 {
        padding-bottom: 8rem !important
    }

    .pb-lg-24 {
        padding-bottom: 12rem !important
    }
}

@media (min-width:1200px) {
    .d-xl-block {
        display: block !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .mt-xl-60 {
        margin-top: 30rem !important
    }

    .mb-xl-16 {
        margin-bottom: 8rem !important
    }

    .mb-xl-54 {
        margin-bottom: 27rem !important
    }

    .p-xl-16 {
        padding: 8rem !important
    }
}

@media (min-width:1400px) {
    .d-xxl-block {
        display: block !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .mt-xxl-8 {
        margin-top: 4rem !important
    }

    .mt-xxl-20 {
        margin-top: 10rem !important
    }

    .me-xxl-12 {
        margin-right: 6rem !important
    }

    .mb-xxl-8 {
        margin-bottom: 4rem !important
    }

    .mb-xxl-10 {
        margin-bottom: 5rem !important
    }

    .p-xxl-8 {
        padding: 4rem !important
    }

    .p-xxl-10 {
        padding: 5rem !important
    }

    .px-xxl-8 {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }

    .px-xxl-10 {
        padding-right: 5rem !important;
        padding-left: 5rem !important
    }

    .py-xxl-14 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important
    }

    .pt-xxl-8 {
        padding-top: 4rem !important
    }

    .pb-xxl-8 {
        padding-bottom: 4rem !important
    }

    .pb-xxl-14 {
        padding-bottom: 7rem !important
    }

    .pb-xxl-24 {
        padding-bottom: 12rem !important
    }
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: 0
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, .75);
    border: none;
    color: #333
}

.flickity-button:hover {
    background: var(--bs-white);
    cursor: pointer
}

.flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f
}

.flickity-button:active {
    opacity: .6
}

.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
    pointer-events: none
}

.flickity-button-icon {
    fill: currentColor
}

.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%)
}

.flickity-prev-next-button.previous {
    left: 10px
}

.flickity-prev-next-button.next {
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1
}

.flickity-rtl .flickity-page-dots {
    direction: rtl
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: .25;
    cursor: pointer
}

.flickity-page-dots .dot.is-selected {
    opacity: 1
}

.facet-label {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600
}

.tax-locatie .facetwp-type-dropdown {
    position: relative;
    width: 100%
}

.tax-locatie .facetwp-type-dropdown .facetwp-dropdown {
    width: 100%;
    padding: 1.4rem 2rem;
    border: .1rem solid var(--bs-gray-300);
    border-radius: 1rem;
    background-color: var(--bs-white);
    color: var(--bs-dark);
    font-size: 1.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 2.5rem
}

.tax-locatie .facetwp-type-dropdown .facetwp-dropdown:focus,
.tax-locatie .facetwp-type-dropdown .facetwp-dropdown:focus-visible {
    outline: 0
}

.tax-locatie .facetwp-type-dropdown::before {
    content: "";
    display: block;
    background-image: url(../../dist/icons/svg/icon-chevron-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none
}


.tax-locatie .facetwp-type-dropdown:focus,
.tax-locatie .facetwp-type-dropdown:focus-visible {
    outline: 0
}

.tax-locatie .facetwp-type-fselect {
    position: relative;
    width: 100%
}

.tax-locatie .facetwp-type-fselect .fs-wrap.multiple {
    position: relative;
    width: 100%;
    padding: 1.4rem 2rem;
    border: .1rem solid var(--bs-gray-300);
    border-radius: 1rem;
    background-color: var(--bs-white);
    color: var(--bs-dark);
    font-size: 1.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 2.5rem
}

.tax-locatie .facetwp-type-fselect .fs-wrap.multiple .fs-label-wrap {
    width: 100%;
    border: none
}

.tax-locatie .facetwp-type-fselect .fs-wrap.multiple .fs-label-wrap .fs-label {
    padding: 0
}

.tax-locatie .facetwp-type-fselect .fs-wrap.multiple .fs-label-wrap .fs-arrow {
    display: none
}

.tax-locatie .facetwp-type-fselect .fs-wrap.multiple .fs-dropdown {
    width: 100.7%;
    top: 4rem;
    left: -.1rem;
    right: 0
}

.tax-locatie .facetwp-type-fselect .fs-wrap.multiple::before {
    content: "";
    display: block;
    background-image: url(../../dist/icons/svg/icon-chevron-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none
}

.tax-locatie .facetwp-type-fselect:focus,
.tax-locatie .facetwp-type-fselect:focus-visible {
    outline: 0
}

.section-filter .facet-label {
    color: var(--bs-dark)
}

.section-filter .facetwp-facet {
    margin-bottom: 0 !important
}

.section-filter .facetwp-type-dropdown {
    position: relative;
    width: 100%
}

.section-filter .facetwp-type-dropdown .facetwp-dropdown {
    width: 100%;
    padding: 1.4rem 2rem;
    border: 0;
    border: .1rem solid var(--bs-gray-300);
    border-radius: 1rem;
    background-color: var(--bs-white);
    color: var(--bs-dark);
    font-size: 1.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 2.5rem
}

.section-filter .facetwp-type-dropdown .facetwp-dropdown:focus,
.section-filter .facetwp-type-dropdown .facetwp-dropdown:focus-visible {
    outline: 0
}

.section-filter .facetwp-type-dropdown::before {
    content: "";
    display: block;
    background-image: url(../../dist/icons/svg/icon-chevron-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none
}

.section-filter .facetwp-type-dropdown:focus,
.section-filter .facetwp-type-dropdown:focus-visible {
    outline: 0
}

:root {
    scroll-behavior: unset
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

body {
    position: relative;
    overflow-x: hidden;
    padding-top: 10.5rem;
    max-width: 100%;
    -webkit-font-smoothing: antialiased
}

body.header-light {
    padding-top: 0
}

.admin-bar #header-wrapper,
.admin-bar #site-wrapper {
    top: 32px
}

.admin-bar #header-wrapper #header-simple {
    margin: 3.2rem 0 0 0
}

#site-wrapper {
    max-width: 100%
}

#page-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-dark);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: .3s all ease-in-out
}

::-moz-selection {
    color: var(--bs-dark);
    background-color: var(--bs-primary-lighter)
}

::selection {
    color: var(--bs-dark);
    background-color: var(--bs-primary-lighter)
}

.size4-3 {
    padding-bottom: 75%
}

.size4-4 {
    padding-bottom: 100%
}

.size4-5 {
    padding-bottom: 125%
}

.size2-3 {
    padding-bottom: 150%
}

.size16-9 {
    padding-bottom: 56.25%
}

.object-fit {
    margin: 0
}

.object-fit img,
.object-fit video {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding: 0 4%;
    max-width: 200rem
}

.transition-primary {
    transition: .3s all ease-in-out
}

.transition-secondary {
    transition: .6s all ease-in-out
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(var(--bs-secondary-rgb), 1) 0, rgba(var(--bs-secondary-rgb), .9) 25%, rgba(var(--bs-secondary-light-rgb), .8337928922) 50%, rgba(var(--bs-secondary-light-rgb), .6) 100%)
}

.has-gray-after::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-light);
    z-index: -1
}

.has-gray-before::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    background-color: var(--bs-light);
    z-index: -1
}

.has-link:hover figure {
    transform: scale(1.05)
}

.has-link:hover .btn-primary::before {
    transform: scaleX(1);
    transform-origin: bottom left
}

.has-link:hover .btn-link .icon {
    transform: translateX(.5rem)
}

p.small {
    line-height: 1.6
}

.fill-white {
    fill: var(--bs-white)
}

.zindex-1 {
    z-index: 2 !important
}

.zindex-2 {
    z-index: 2 !important
}

.line-height-1 {
    line-height: 2.5rem
}

.socials .icon-wrapper:hover {
    background-color: var(--bs-primary) !important
}

.variables {
    display: none
}

.w-1 {
    width: 1rem
}

.w-1_5 {
    width: 1.5rem
}

.w-2 {
    width: 2rem
}

.w-2_5 {
    width: 2.5rem
}

.w-3 {
    width: 3rem
}

.w-4 {
    width: 4rem
}

.w-5 {
    width: 5rem
}

.w-5_5 {
    width: 5.5rem
}

.w-8 {
    width: 8rem
}

.w-min-8 {
    min-width: 8rem
}

.w-max-8 {
    max-width: 8rem
}

.h-1 {
    height: 1rem
}

.h-1_5 {
    height: 1.5rem
}

.h-2 {
    height: 2rem
}

.h-2_5 {
    height: 2.5rem
}

.h-3 {
    height: 3rem
}

.h-4 {
    height: 4rem
}

.h-5 {
    height: 5rem
}

.h-5_5 {
    height: 5.5rem
}

.h-8 {
    height: 8rem
}

.h-min-8 {
    min-height: 8rem
}

.h-max-8 {
    max-height: 8rem
}

.more-filters {
    display: none
}

.more-filters.-expanded {
    display: flex
}

.avatar {
    width: 10rem;
    height: 10rem;
    flex: 0 0 auto
}

.status {
    display: inline-block;
    padding: .8rem 1.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25rem;
    line-height: 1rem
}

.status.available {
    background-color: #1a9803;
    color: var(--bs-text)
}

.cursor-pointer {
    cursor: pointer
}

.sidebar {
    top: 18rem
}

.border-top {
    border-top: 1px solid var(--bs-gray-300) !important
}

.text-info {
    color: var(--bs-info) !important
}

.text-info:hover {
    text-decoration: underline
}

.pt-4 {
    padding-top: 2rem !important
}

.energy .energy-label-type {
    color: var(--bs-text);
    font-weight: 700
}

.energy-label .A {
    fill: #008c37
}

.energy-label .B {
    fill: #008c37
}

.energy-label .C {
    fill: #93c11f
}

.energy-label .D {
    fill: #feeb00
}

.energy-label .E {
    fill: #f7b230
}

.energy-label .F {
    fill: #ea590d
}

.energy-label .G {
    fill: #bc1622
}

.energy-label-type {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translatey(-50%)
}

.accordion-button {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none
}

.bg-shape>path {
    fill: var(--bs-secondary-light);
}

@media (max-width:575.98px) {
    .section-custom .bg-shape {
        display: none
    }
}



.navbar .navbar-navigation>li {
    margin: 0 2rem 0 0
}

section.newsletter form .gfield input[type="email"]{
    padding: 3.2rem 4.2rem !important;
    border-radius: 25rem;
}
section.newsletter form {
    position: relative;
    display: flex;
}
section.newsletter form .gform_body{
    width: 100%;
}
section.newsletter form .gform_footer.top_label {
    top: 50%;
    top: 46px;
    right: 1.6rem;
    transform: translatey(-50%);
    padding: 0;
    margin: 0;
    position: absolute;
    width: auto;
}
section.newsletter form .gform_footer.top_label input {
    margin-bottom: 0;
}
@media (max-width:575.98px) {
    section.newsletter form {
        display: block;
    }
   section.newsletter form .gform_footer.top_label {
        position: relative;
        transform: none;
        right: unset;
    }
    section.newsletter form .gfield input[type="email"] {
        padding: 1.8rem 3rem !important;
        margin-bottom: 1rem;
    }
}

.label {
    background-color: var(--bs-primary);
    color: var(--bs-text);
    display: inline-block;
    padding: .8rem 1.6rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25rem;
    line-height: 1rem
}

.toggle-filters:hover {
    cursor: pointer;
    text-decoration: underline
}

.results .facet-wrap .facet-label {
    display: none
}

.facetwp-slider-reset {
    display: none
}

.facetwp-selections ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 0 2rem
}

div.facetwp-selections ul li {
    margin: 0 1rem 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    background-color: var(--bs-primary);
    color: var(--bs-text);
    padding: .8rem 1.2rem;
    border-radius: 25rem
}

.status {
    color: var(--bs-text)
}

.status.onder_optie,
.status.verhuurd_onder_voorbehoud,
.status.verkocht_onder_voorbehoud {
    background-color: #e65c00
}

.status.verkocht {
    background-color: #d02424
}

.status.beschikbaar {
    background-color: #228b22
}

.grid .grid-item:nth-child(n+6) {
    display: none
}


.h1,
h1 {
    font-size: 4.6rem;
    line-height: 6.1rem;
    margin: 0 0 15px;
    font-weight: 700
}

.h2,
h2 {
    font-size: 3.3rem
}

.h3,
.h4,
h3,
h4 {
    font-size: 20px
}

footer a {
    text-decoration: underline
}

p {
    margin-bottom: 20px
}

.h2,
h2 {
    font-size: 3rem;
    margin: 0 0 15px
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
    padding: 1.8rem 3rem !important
}

.gform_wrapper.gravity-theme .gfield textarea.large {
    height: 250px
}

.section-hero.section-hero-low .content {
    padding: 32.5rem 0 19rem 0
}

.section-hero.section-hero-high .content {
    padding: 27.8rem 0 31rem
}

.facetwp-dropdown:hover {
    cursor: pointer
}

.aanbod .h4,
.aanbod h4 {
    font-size: 2.2rem
}

.text-info:hover {
    cursor: pointer;
    text-decoration: underline
}

.h3 .facet-wrap,
h3 .facet-wrap {
    font-size: 3rem;
    font-weight: 700
}

/* table tbody tr td:nth-child(1) {
    color: #aaa
} */

.size16-9 {
    padding-bottom: 70.25%
}

.section-video .size16-9 {
    padding-bottom: 56.25%
}

.position-relative.bg-light.py-16.pt-lg-24 {
    padding-bottom: 20px !important
}

.results.mt-4.mt-lg-6 {
    margin-top: 80px !important;
    padding-bottom: 20px
}

.btn-primary {
    color: var(--bs-text) !important
}

@media (max-width:767.98px) {
    .section-hero.section-hero-high .content {
        padding: 13.8rem 0 21rem
    }

    .position-relative.text-center {
        text-align: left !important
    }

    .col-12.col-sm-auto.d-flex.justify-content-center {
        margin-bottom: 10px
    }

    .status {
        margin: 10px 0 0
    }

    .h1,
    h1 {
        font-size: 3rem;
        line-height: 4.3rem !important
    }

    .section-hero.section-hero-low .content {
        padding: 18.5rem 0 10rem 0
    }

	.dataTables_scrollBody table tbody tr td, .dataTables_scrollHead table tbody tr th {
	    white-space: nowrap;
	}
	table tr td, table tr th {
	    padding: 1rem 0;
	}
    /* table tbody tr td {
        display: block;
        width: 100% !important;
        border: none
    }

    table tbody tr td:nth-child(1) {
        padding: 1rem 1rem 0 1rem;
        border: none
    }

    table tbody tr td:nth-child(2) {
        padding: 0 0 1rem 1rem;
        border-bottom: .1rem solid #d1d1d1
    } */
}

.rounded-circle.bg-dark {
    background-color: var(--bs-secondary) !important
}

.rounded-circle.bg-dark:focus,
.rounded-circle.bg-dark:hover {
    background-color: var(--bs-secondary-light) !important
}

.h1,
h1 {
    line-height: 5.3rem
}

.h2,
h2 {
    font-size: 2.3rem;
    line-height: 4.3rem
}

.footer-bottom {
    font-size: 15px
}

.aanbod .h4,
.aanbod h4 {
    font-size: 2rem
}

.section-team .text-primary.mb-0 {
    display: none
}

ul.logos li img {
    max-height: 8rem;
    max-width: 12rem;
    height: 8rem !important;
    width: auto
}

@media (max-width:991.98px) {
    .img-responsive-16-9 {
        padding-bottom: 56.25%
    }

    .img-responsive-4-5 {
        padding-bottom: 125%
    }

    .img-responsive-4-3 {
        padding-bottom: 75%
    }

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding: 0 2rem
    }
}

@media (max-width:575.98px) {
    .rounded-3 {
        border-radius: 2rem !important
    }

    .btn-link {
        font-size: 1.6rem !important
    }

    .btn-primary {
        font-size: 1.5rem !important;
        width: 100%;
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem
    }

    .more-filters-mobile {
        display: none
    }

    .more-filters-mobile.-expanded {
        display: flex
    }
}

.accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-dark)
}

.accordion .accordion-item .accordion-header .accordion-button .h3,
.accordion .accordion-item .accordion-header .accordion-button h3 {
    font-size: 2rem
}

.accordion .accordion-item .accordion-header .accordion-button.collapsed .icon {
    transform: rotate(0)
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .h3,
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) h3 {
    color: var(--bs-primary)
}

.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .icon {
    fill: var(--bs-primary);
    transform: rotate(-180deg)
}

.accordion .accordion-item .accordion-header .accordion-button:focus {
    border: none;
    box-shadow: none
}

.accordion .accordion-item .accordion-header .accordion-button::after {
    display: none
}

.accordion .accordion-item .accordion-header:hover .h3,
.accordion .accordion-item .accordion-header:hover h3 {
    color: var(--bs-secondary)
}

@media (max-width:991.98px) {
    .accordion .accordion-item {
        border-radius: 1rem !important
    }

    .accordion .accordion-item .accordion-header .accordion-button .h3,
    .accordion .accordion-item .accordion-header .accordion-button h3 {
        font-size: 1.8rem
    }
}

table thead tr th {
    font-weight: 600
}

/* table tbody tr td {
    border-top: .1rem solid var(--bs-gray-300)
}

table tbody tr td:nth-child(1) {
    width: 50%;
    padding: 2rem 0 2rem 2rem;
    color: var(--bs-gray-700)
}

table tbody tr td:nth-child(2) {
    padding: 2rem 2rem 2rem 0
} */

table tr td, table tr th {
    padding: 2rem 0;
}

.header-scrolled .navbar {
    background-color: var(--bs-white);
    padding: 2rem 0;
    box-shadow: 0 1.5rem 4rem rgba(25, 25, 30, .05)
}

.header-light .navbar {
    background-color: transparent;
    box-shadow: none
}

.header-light .navbar .brand--light {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.header-light .navbar .brand--dark {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10rem)
}

.header-light .navbar .navbar-navigation>li>a {
    color: var(--bs-text)
}

.header-light .navbar .navbar-navigation>li>a .icon {
    fill: var(--bs-text)
}

.header-light .header-scrolled .navbar {
    background-color: var(--bs-white);
    box-shadow: 0 1.5rem 4rem rgba(25, 25, 30, .05)
}

.header-light .header-scrolled .brand--light {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10rem)
}

.header-light .header-scrolled .brand--dark {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.header-light .header-scrolled .navbar-navigation>li>a {
    color: var(--bs-dark)
}

.header-light .header-scrolled .navbar-navigation>li>a .icon {
    fill: var(--bs-dark)
}

.navbar {
    background-color: transparent;
    padding: 2.5rem 0;
    box-shadow: 0 1.5rem 4rem rgba(25, 25, 30, .05)
}

.navbar .brand {
    padding-right: 10rem;
    position: absolute
}

.navbar .brand--light {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10rem)
}

.navbar .brand--dark {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.navbar .brand img {
    width: 12.5rem
}

.navbar .navbar-navigation {
    padding-left: 19rem !important
}

.navbar .navbar-navigation>li {
    position: relative;
    display: inline-flex;
    list-style: none;
    margin: 0 3rem 0 0
}

.navbar .navbar-navigation>li>a {
    display: block;
    font-size: 1.6rem;
    color: var(--bs-dark);
    transition: .3s all ease-in-out
}

.navbar .navbar-navigation>li>a .icon {
    fill: var(--bs-dark)
}

.navbar .navbar-navigation>li.current-menu-item a,
.navbar .navbar-navigation>li.current-page-parent a {
    color: var(--bs-primary)
}

.navbar .navbar-navigation>li.current-menu-item a .icon,
.navbar .navbar-navigation>li.current-page-parent a .icon {
    fill: var(--bs-primary)
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap {
    box-shadow: 0 1.5rem 4rem rgba(25, 25, 30, .05);
    border-radius: 1rem;
    position: absolute;
    top: 4rem;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: visible;
    transform: translateY(0);
    transition: .3s all ease-in-out
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap>.sub-menu {
    padding: 3rem;
    margin: 0;
    background-color: var(--bs-white)
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap>.sub-menu li {
    list-style: none;
    margin-bottom: 2rem;
    line-height: 2.5rem
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap>.sub-menu li a {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--bs-dark);
    white-space: nowrap;
    background-color: var(--bs-white)
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap>.sub-menu li a span {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--bs-gray-600)
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap>.sub-menu li.current-menu-item a {
    color: var(--bs-primary)
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap>.sub-menu li:hover a {
    color: var(--bs-primary)
}

.navbar .navbar-navigation>li.menu-item-has-children>.sub-menu-wrap>.sub-menu li:last-child {
    margin-bottom: 0
}

.navbar .navbar-navigation>li.menu-item-has-children:hover::before {
    width: 100%
}

.navbar .navbar-navigation>li.menu-item-has-children:hover>.sub-menu-wrap {
    max-height: 80rem;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1
}

.navbar .navbar-navigation>li:hover>a {
    color: var(--bs-primary)
}

.navbar .navbar-navigation>li:hover>a .icon {
    fill: var(--bs-primary);
    transform: scaleY(-1)
}

.navbar .btn {
    padding: 1.6rem 2.8rem;
    line-height: 2.5rem
}
@media (max-width:1599.98px) {
    .navbar .navbar-navigation {
        padding-left: 16rem !important
    }

    .navbar .navbar-navigation>li {
        margin: 0 1.5rem 0 0 !important
    }

    .navbar .navbar-navigation>li>a {
        font-size: 1.5rem
    }
}

.search-box {
    z-index: 1030;
    transform: translateY(-100%)
}

.search-box form input {
    border: 0;
    border-bottom: .1rem solid var(--bs-dark)
}

.search-box form input:focus {
    outline: 0
}

.toggle-search-active .search-box {
    transform: translateY(0)
}

.toggle-search-active #page-wrapper::before {
    visibility: visible;
    opacity: .3
}

@media (max-width:575.98px) {
    .navbar .brand img {
        width: 10rem
    }
}

.hamburger-menu {
    margin: 9rem 0 0 0;
    height: auto;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1020;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: .3s all ease-in-out
}

.hamburger-menu .btn {
    padding: 1.8rem 3.2rem
}

.hamburger-menu .menu-container ul>li {
    position: relative;
    list-style: none;
    margin: 0 0 2rem
}

.hamburger-menu .menu-container ul>li a {
    font-size: 2rem;
    font-weight: 600;
    color: var(--bs-dark)
}

.hamburger-menu .menu-container ul>li a .menu-item-description {
    display: none
}

.hamburger-menu .menu-container ul>li .more {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.hamburger-menu .menu-container ul>li>.sub-menu {
    margin: 0 2rem;
    padding: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: .3s all ease-in-out
}

.hamburger-menu .menu-container ul>li>.sub-menu .back {
    display: flex;
    align-items: center;
    margin: 0 0 2rem;
    color: var(--bs-dark);
    font-size: 1.6rem;
    font-weight: 600
}

.hamburger-menu .menu-container ul>li.current-menu-item>a,
.hamburger-menu .menu-container ul>li.current-menu-parent>a {
    color: var(--bs-primary)
}

.hamburger-menu .menu-container ul>li.current-menu-item .more .icon,
.hamburger-menu .menu-container ul>li.current-menu-parent .more .icon {
    fill: var(--bs-primary)
}

.sub-menu-active .hamburger-menu .menu-container {
    transform: translateX(-100%)
}

.sub-menu-active .hamburger-menu .menu-container .children-active ul.sub-menu {
    visibility: visible;
    opacity: 1
}

.sub-menu-active .hamburger-menu .menu-container .children-active ul.sub-menu ul.sub-menu {
    visibility: hidden;
    opacity: 0
}

.sub-menu-active .hamburger-menu .menu-container .children-active ul.sub-menu.submenu-active {
    transform: translateX(-200%)
}

.sub-menu-active .hamburger-menu .menu-container .children-active ul.sub-menu.submenu-active li.children-active ul.sub-menu {
    transform: translate(-200%);
    opacity: 1
}

.header-light .hamburger .hamburger-circle {
    background-color: var(--bs-white)
}

.header-light .hamburger .hamburger-wrapper--bar {
    background-color: var(--bs-secondary)
}

.header-light .hamburger::before {
    color: var(--bs-text)
}

.header-light .header-scrolled .hamburger .hamburger-circle {
    background-color: var(--bs-secondary)
}

.header-light .header-scrolled .hamburger .hamburger-wrapper--bar {
    background-color: var(--bs-white)
}

.header-light .header-scrolled .hamburger::before {
    color: var(--bs-secondary)
}

.header-scrolled .hamburger-menu {
    margin: 8rem 0 0 0
}

.hamburger .hamburger-circle {
    height: 5rem;
    width: 5rem;
    background-color: var(--bs-secondary);
    transition: .3s all ease-in-out
}

.hamburger .hamburger-wrapper {
    position: absolute;
    display: inline-flex;
    align-items: center;
    width: 24px;
    height: 10px;
    cursor: pointer
}

.hamburger .hamburger-wrapper--1 {
    opacity: 1
}

.hamburger .hamburger-wrapper--1 .hamburger-wrapper--bar:nth-child(1) {
    top: 0
}

.hamburger .hamburger-wrapper--1 .hamburger-wrapper--bar:nth-child(2) {
    bottom: 0
}

.hamburger .hamburger-wrapper--2 {
    opacity: 0
}

.hamburger .hamburger-wrapper--bar {
    position: absolute;
    background-color: var(--bs-white);
    width: 24px;
    height: 2px;
    transform-origin: center;
    transition: .3s all ease-in-out
}

.hamburger::before {
    content: "Menu";
    cursor: pointer;
    display: inline-block;
    position: absolute;
    right: 6rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bs-secondary);
    transition: .3s all ease-in-out
}

.nav-open .navbar {
    background-color: var(--bs-white)
}

.nav-open .navbar .brand--light {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10rem)
}

.nav-open .navbar .brand--dark {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav-open .hamburger .hamburger-circle {
    background-color: var(--bs-secondary)
}

.nav-open .hamburger .hamburger-wrapper--1 {
    opacity: 0
}

.nav-open .hamburger .hamburger-wrapper--1 .hamburger-wrapper--bar {
    background-color: var(--bs-white)
}

.nav-open .hamburger .hamburger-wrapper--1 .hamburger-wrapper--bar:nth-child(1) {
    transform: translateY(.4rem)
}

.nav-open .hamburger .hamburger-wrapper--1 .hamburger-wrapper--bar:nth-child(2) {
    transform: translateY(-.4rem)
}

.nav-open .hamburger .hamburger-wrapper--2 {
    opacity: 1
}

.nav-open .hamburger .hamburger-wrapper--2 .hamburger-wrapper--bar {
    background-color: var(--bs-white)
}

.nav-open .hamburger .hamburger-wrapper--2 .hamburger-wrapper--bar:nth-child(1) {
    transform: rotate(45deg)
}

.nav-open .hamburger .hamburger-wrapper--2 .hamburger-wrapper--bar:nth-child(2) {
    transform: rotate(-45deg)
}

.nav-open .hamburger::before {
    content: "Sluiten";
    color: var(--bs-dark)
}

.nav-open .hamburger-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.sub-menu-active .hamburger-menu__wrapper {
    transform: translateX(-100%)
}

.sub-menu-active .hamburger-menu__wrapper .children-active ul.sub-menu {
    z-index: 9999;
    opacity: 1
}

.sub-menu-active .hamburger-menu__wrapper .children-active ul.sub-menu ul.sub-menu {
    opacity: 0
}

.sub-menu-active .hamburger-menu__wrapper .children-active ul.sub-menu.submenu-active {
    transform: translate(-100%, -50%)
}

.sub-menu-active .hamburger-menu__wrapper .children-active ul.sub-menu.submenu-active li.children-active ul.sub-menu {
    transform: translate(-200%, -50%);
    opacity: 1
}

@media (max-width:575.98px) {
    .hamburger .hamburger-circle {
        width: 4rem;
        height: 4rem
    }

    .hamburger .hamburger-circle .hamburger-wrapper {
        width: 2rem
    }

    .hamburger .hamburger-circle .hamburger-wrapper--bar {
        width: 2rem
    }

    .hamburger::before {
        right: 5rem
    }
}

header.header-scrolled .custom-link .icon-wrapper {
    background-color: var(--bs-dark)
}

header.header-scrolled .custom-link .icon-wrapper svg {
    fill: var(--bs-white)
}

header.header-scrolled .custom-link:hover .icon-wrapper {
    background-color: var(--bs-white)
}

header.header-scrolled .custom-link:hover .icon-wrapper svg {
    fill: var(--bs-dark)
}

.custom-link {
    cursor: pointer
}

.custom-link .icon-wrapper {
    background-color: var(--bs-white);
    width: 5.5rem;
    height: 5.5rem
}

.custom-link .icon-wrapper svg {
    fill: var(--bs-dark)
}

.custom-link:hover .icon-wrapper {
    background-color: var(--bs-dark)
}

.custom-link:hover .icon-wrapper svg {
    fill: var(--bs-white)
}

.hover-phone .custom-link-popup {
    top: 8rem;
    left: 50%;
    border-radius: 25rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(2rem);
    transition: .3s all ease-in-out
}

.hover-phone .custom-link-popup .thumb {
    width: 5.5rem;
    height: 5.5rem;
    border: .5rem solid var(--bs-primary)
}

.hover-phone .custom-link-popup a {
    color: var(--bs-dark)
}

.hover-phone .custom-link-popup::before {
    content: "";
    width: 3.4rem;
    height: 3.4rem;
    border-radius: .6rem;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: var(--bs-white);
    transform: rotate(45deg) translateX(-50%)
}

.hover-phone:hover .custom-link-popup {
    max-height: 40rem;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.newsletter .newsletter-form {
    position: relative
}

.newsletter .newsletter-form .input-field {
    width: 100%;
    padding: 3.2rem 4.2rem;
    border-radius: 25rem;
    border: .1rem solid var(--bs-gray-300)
}

.newsletter .newsletter-form .input-field::focus {
    outline: 0
}

.newsletter .newsletter-form .input-submit {
    padding: 2.8rem 8.3rem;
    line-height: 1;
    position: absolute;
    right: 1.6rem !important;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bs-primary);
    color: var(--bs-text);
    border: 0;
    border-radius: 25rem;
    font-size: 1.8rem;
    font-weight: 600;
    transition: .3s all ease-in-out
}

.logos {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap
}

.logos li {
    display: inline-block;
    margin: 0 2.5rem 0 0;
    list-style: none
}

.logos li img {
    max-height: 8rem;
    max-width: 12rem;
    height: auto;
    width: auto
}

.logos li:last-child {
    margin: 0
}

footer.footer>div>div>div>div * {
    color: var(--bs-footer-text) !important;
}

footer.footer {
    background-color: var(--bs-footer) !important;
}

.footer-top::before {
    content: "";
    display: block;
    background-color: var(--bs-gray-300);
    width: .1rem;
    position: absolute;
    top: 12rem;
    bottom: 12rem;
    left: 50%;
    transform: translateX(-50%)
}

.footer-center a {
    text-decoration: none !important;
}

.footer-bottom .menu li {
    margin: 0 4rem 0 0
}

.footer-bottom .menu li:last-child {
    margin: 0
}

.footer a {
    color: var(--bs-dark)
}

.footer a:hover {
    text-decoration: underline
}

.footer li {
    list-style: none
}

.footer .icon-wrapper {
    width: 15rem;
    height: 15rem;
    flex: 0 0 auto
}

.footer .icon-wrapper svg {
    width: 4.2rem;
    height: 5.6rem
}

@media (max-width:1399.98px) {
    .footer .icon-wrapper {
        width: 9.5rem;
        height: 9.5rem;
        flex: 0 0 auto
    }
}

@media (max-width:1199.98px) {
    .logos li {
        margin: 0 5rem 0 0
    }

    .footer .row:last-child .menu li {
        margin: 0 5rem 0 0
    }
}

@media (max-width:991.98px) {
    .footer-top::before {
        top: 8rem;
        bottom: 8rem
    }
}

@media (max-width:767.98px) {
    .logos img {
        max-width: 10rem;
        max-height: 10rem
    }

    .newsletter .newsletter-form .input-field {
        line-height: 2rem
    }

    .newsletter .newsletter-form .input-submit {
        width: 100%;
        margin: 2rem 0 0;
        position: relative;
        transform: none;
        right: unset !important
    }

    .footer-top::before {
        display: none
    }

    .footer .row:last-child .menu li {
        display: block;
        margin: 0;
        list-style: none
    }
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem
}

.grid .grid-item:nth-child(1) {
    padding-bottom: 75%;
    border-radius: 4rem 0 0 4rem;
    grid-area: 1/1/3/3
}

.grid .grid-item:nth-child(2) {
    grid-area: 1/3/2/4
}

.grid .grid-item:nth-child(3) {
    border-radius: 0 4rem 0 0;
    grid-area: 1/4/2/5
}

.grid .grid-item:nth-child(4) {
    grid-area: 2/3/3/4
}

.grid .grid-item:nth-child(5) {
    border-radius: 0 0 4rem 0;
    grid-area: 2/4/3/5
}

.btn {
    border-radius: 25rem;
    font-weight: 600;
    isolation: isolate;
    will-change: transform;
    border: 0;
    transition: .3s all ease-in-out;
    text-decoration: none
}

.btn:focus {
    border: none;
    box-shadow: none
}

.btn:focus-visible {
    outline: 0
}

.btn-primary {
    position: relative;
    overflow: hidden;
    font-size: 1.7rem;
    font-weight: 600;
    padding: 2.4rem 5rem;
    color: var(--bs-text)
}

.btn-primary::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-primary-lighter);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .6s ease;
    will-change: transform
}

.btn-primary:hover {
    background-color: var(--bs-primary);
    color: var(--bs-text)
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left
}

.btn-white {
    background-color: var(--bs-white);
    border-color: var(--bs-white);
    color: var(--bs-dark)
}

.btn-link {
    font-size: 1.7rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    transition: .3s all ease-in-out
}

.btn-link .icon {
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--bs-text);
    transition: .3s all ease-in-out
}

.btn-link-secondary .icon {
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--bs-primary);
    transition: .3s all ease-in-out
}

/* .btn-link:hover .icon{
    fill: var(--bs-primary);
}

.btn-link-secondary:hover .icon{
    fill: var(--bs-primary-darkest);
} */

.btn-link:hover {
    color: var(--bs-text)
}

.btn-link:hover .icon {
    transform: translateX(.5rem)
}

.btn-link-secondary:hover .icon {
    transform: translateX(.5rem)
}

.btn-return:hover .icon {
    transform: translateX(-.5rem)
}

.btn-respond {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 99;
    padding: 2.4rem 5rem !important;
    width: unset;
    background-color: var(--bs-respond);
    color: var(--bs-white) !important;
    border-color: var(--bs-respond)
}

.btn-respond:hover {
    background-color: var(--bs-respond);
    border-color: var(--bs-respond)
}

.bg-respond {
    background-color: var(--bs-respond) !important;
    border-color: var(--bs-respond) !important;
    color: var(--bs-white) !important;
}

.bg-respond:hover {
    background-color: var(--bs-respond) !important;
    border-color: var(--bs-respond) !important;
}

.btn-light a {
    color: var(--bs-dark)
}

@media (max-width:575.98px) {
    .btn-100.btn-primary {
        width: 100%
    }

    .btn-primary {
        padding-left: 1rem;
        padding-right: 1rem
    }
}

.h1,
h1 {
    margin: 0 0 2.5rem;
    font-size: 5.6rem;
    font-weight: 800;
    line-height: 5.6rem
}

.h2,
h2 {
    margin: 0 0 2.5rem;
    font-size: 4rem;
    font-weight: 700;
    line-height: 4.4rem;
    color: var(--bs-dark)
}

.h3,
h3 {
    margin: 0 0 2rem;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2.9rem
}

.h4,
h4 {
    margin: 0 0 2rem;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 3rem
}

.h5,
h5 {
    margin: 0 0 2rem;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 5.2rem
}

.h6,
h6 {
    margin: 0 0 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 3.6rem
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

a {
    text-decoration: none;
    transition: .3s all ease-in-out
}

b,
strong {
    font-weight: 600
}

p {
    margin-bottom: 3rem
}

.subtitle {
    display: inline-flex;
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 3rem;
    letter-spacing: .25rem;
    text-transform: uppercase;
    color: var(--bs-dark)
}

.subtitle::before {
    content: "";
    border-left: 2px solid var(--bs-primary);
    display: block;
    margin: 0.3rem 1rem 0.8rem 0;
    color: var(--bs-primary);
    height: 1.2rem;
}

@media (min-width:576px) {
    .subtitle::before {
        margin: 0.8rem 1rem 0.8rem 0 !important;
        height: unset !important;
    }
}

@media (max-width:991.98px) {

    .h1,
    h1 {
        margin: 0 0 2rem;
        font-size: 5rem;
        line-height: 5.5rem
    }

    .h2,
    h2 {
        margin: 0 0 2rem;
        font-size: 3.5rem;
        line-height: 4rem
    }
}

@media (max-width:575.98px) {
    body {
        font-size: 1.6rem;
        line-height: 2.8rem
    }

    .subtitle {
        margin: 0 0 1rem;
        font-size: 1.2rem;
        letter-spacing: .15rem;
        line-height: 2rem
    }

    .h1,
    h1 {
        margin: 0 0 1.5rem;
        font-size: 3rem;
        line-height: 3.5rem
    }

    .h2,
    h2 {
        margin: 0 0 1.5rem;
        font-size: 2.8rem;
        line-height: 3.3rem
    }

    .h3,
    h3 {
        margin: 0 0 1rem;
        font-size: 2.4rem;
        line-height: 2.9rem
    }

    .h4,
    h4 {
        margin: 0 0 1rem;
        font-size: 2.2rem;
        line-height: 2.7rem
    }
}

.header-light .section-breadcrumbs span.last, .header-light .section-breadcrumbs span.separator{
    color: var(--bs-text)
}

/* 
.header-light .section-breadcrumbs nav.breadcrumb a:not(:first-of-type){
    color: var(--bs-text) !important;
    font-weight: normal;
}

nav.breadcrumb>span>a:hover:first-of-type{
    color: var(--bs-primary) !important
} */

.header-light .section-breadcrumbs .icon {
    fill: var(--bs-text)
}

.section-breadcrumbs {
    position: absolute;
    top: 14.6rem;
    left: 0;
    right: 0;
    z-index: 99;
    font-size: 1.4rem;
    line-height:1.6;
}

.section-breadcrumbs span a {
    font-weight: 600
}

.section-breadcrumbs span.last, .section-breadcrumbs span.separator {
    color: var(--bs-text)
}

.section-breadcrumbs .icon {
    fill: var(--bs-dark)
}
.rank-math-breadcrumb span {
    margin:0px 3px;
}
.rank-math-breadcrumb span {
    color:#FFF;
} 


@media (max-width:991.98px) {
    .section-breadcrumbs {
        top: 12rem;
        font-size: 1.2rem
    }
}

@media (max-width:575.98px) {
    .section-breadcrumbs {
        top: 10rem
    }
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
    border: .1rem solid var(--bs-gray-300);
    border-radius: 1rem;
    padding: 2.5rem 3rem !important;
    font-size: 1.6rem !important;
    background-color: var(--bs-white) !important
}

.gform_wrapper.gravity-theme input[type=color]:focus,
.gform_wrapper.gravity-theme input[type=date]:focus,
.gform_wrapper.gravity-theme input[type=datetime-local]:focus,
.gform_wrapper.gravity-theme input[type=datetime]:focus,
.gform_wrapper.gravity-theme input[type=email]:focus,
.gform_wrapper.gravity-theme input[type=month]:focus,
.gform_wrapper.gravity-theme input[type=number]:focus,
.gform_wrapper.gravity-theme input[type=password]:focus,
.gform_wrapper.gravity-theme input[type=search]:focus,
.gform_wrapper.gravity-theme input[type=tel]:focus,
.gform_wrapper.gravity-theme input[type=text]:focus,
.gform_wrapper.gravity-theme input[type=time]:focus,
.gform_wrapper.gravity-theme input[type=url]:focus,
.gform_wrapper.gravity-theme input[type=week]:focus,
.gform_wrapper.gravity-theme select:focus,
.gform_wrapper.gravity-theme textarea:focus {
    outline: 0;
    border: .1rem solid var(--bs-gray-400)
}

.gform_wrapper.gravity-theme .gfield_label {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 2rem
}

.gform_heading {
    display: none
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 3rem !important
}

.gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield select.large {
    height: 100%
}

@media (max-width:767.98px) {
    .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
        line-height: 1 !important;
        min-height: unset !important;
        width: 100%
    }
}

.section-hero.section-hero-high .content {
    padding: 22.8rem 0 27rem
}

.section-hero.section-hero-low .content {
    padding: 23.5rem 0 12rem 0
}

.section-hero .video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover
}

@media (max-width:767.98px) {
    .section-hero.section-hero-high .content {
        padding: 18.8rem 0 19rem
    }

    .section-hero.section-hero-low .content {
        padding: 24.5rem 0 12rem 0
    }
}

.section-text .row.justify-content-center .row.g-3 {
    justify-content: center
}

.play-button {
    width: 12rem;
    height: 12rem
}

.play-button svg {
    width: 2.6rem;
    height: 2.6rem
}

.section-video .video {
    cursor: pointer
}

.section-video .video:hover figure {
    transform: scale(1.05)
}

@media (max-width:991.98px) {
    .play-button {
        width: 7.5rem;
        height: 7.5rem
    }

    .play-button .icon {
        width: 2rem;
        height: 2rem
    }
}

.section-filter {
    margin: -15rem 0 0 0
}

.section-filter .fwp-submit {
    position: absolute;
    left: 50%;
    bottom: -4rem;
    transform: translateX(-50%);
    z-index: 1
}

.section-filter .fwp-submit .facet-label {
    display: none
}

@media (max-width:767.98px) {
    .section-filter .fwp-submit {
        left: 6rem;
        right: 6rem;
        transform: none
    }
}

@media (max-width:575.98px) {
    .section-filter .fwp-submit {
        left: 3rem;
        right: 3rem;
        width: auto
    }
}

.section-aanbod .aanbod {
    margin: 0 0 3.75rem
}

.section-aanbod .aanbod .status {
    position: absolute;
    top: 3rem;
    left: 3rem
}

.section-aanbod .aanbod .place {
    color: var(--bs-gray-700);
    line-height: 2rem
}

.section-aanbod .aanbod .btn {
    padding-left: 1rem;
    padding-right: 1rem;
    left: 4rem;
    right: 4rem;
    bottom: -3.75rem
}

@media (max-width:1199.98px) {
    .section-aanbod .aanbod .btn {
        left: 2rem;
        right: 2rem
    }
}

@media (max-width:575.98px) {
    .section-aanbod .aanbod .btn {
        width: auto
    }
}

.section-services .service {
    background: linear-gradient(-224deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%) 0% 0% no-repeat padding-box;
}

section.position-relative.section-meet-bottom .bg-gradient {
    background: linear-gradient(-242deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%) 0% 0% no-repeat padding-box !important;
}

footer .bg-gradient {
    background: linear-gradient(-230deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%) 0% 0% no-repeat padding-box !important;
}

.section-services .service .icon-wrapper {
    width: 14.5rem;
    height: 14.5rem
}

.section-services .service .icon-wrapper img {
    height: auto;
    width: auto;
    max-width: 6rem;
    max-height: 6rem;
    fill: var(--bs-primary)
}

.section-custom.section-text-image {
    padding-bottom: 45rem
}

.section-custom .bg-shape {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.section-image-quote-text {
    margin: -35rem 0 0 0
}

.section-image-quote-text .quote {
    font-size: 3.2rem;
    line-height: 3.7rem
}

.section-image-quote-text li {
    display: inline-block;
    list-style: none
}

.section-image-quote-text li .avatar {
    border: .4rem solid var(--bs-white)
}

.section-image-quote-text li:not(:first-child) {
    margin: 0 0 0 -2rem
}

.section-image-quote-text .columns {
    margin-top: -15rem
}

.section-image-quote-text .columns::before {
    content: "";
    display: block;
    width: .1rem;
    height: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--bs-gray-300);
    transform: translate(-50%, -50%)
}

@media (max-width:1199.98px) {
    .section-custom.section-text-image {
        padding-bottom: 27rem
    }

    .section-image-quote-text {
        margin: -20rem 0 0 0
    }
}

@media (max-width:991.98px) {
    .section-custom .bg-shape {
        width: 100%
    }

    .section-custom.section-text-image {
        padding-bottom: 16rem
    }

    .section-image-quote-text {
        margin: -12rem 0 0 0
    }

    .section-image-quote-text .quote {
        margin: 0 0 2rem;
        font-size: 3.5rem;
        line-height: 4rem
    }

    .section-image-quote-text .columns {
        margin-top: 4rem
    }

    .section-image-quote-text .columns .column:nth-child(1) .content {
        padding: 0 0 4rem;
        border-bottom: .1rem solid var(--bs-gray-300)
    }

    .section-image-quote-text .columns::before {
        display: none
    }
}

@media (max-width:575.98px) {
    .section-image-quote-text .quote {
        margin: 0 0 1.5rem;
        font-size: 3rem;
        line-height: 3.5rem
    }
}

.section-meet-top {
    margin: 0 0 -46rem 0;
}

.section-meet-center {
    padding: 25rem 0 38rem 0
}

.section-meet-bottom {
    margin: -40rem 0 12rem 0
}

.section-meet-bottom .number {
    width: 21rem;
    height: 21rem
}

.section-meet-bottom .number span {
    font-size: 7rem;
    font-weight: 900
}

.section-meet-bottom .link {
    color: var(--bs-text);
    font-weight: 600
}

@media (max-width:1399.98px) {
    .section-meet-top {
        margin: 0 0 -54rem 0
    }

    .section-meet-center {
        padding: 38rem 0 38rem 0
    }
}

@media (max-width:1199.98px) {
    .section-meet-bottom {
        margin: -30rem 0 12rem 0
    }
}

@media (max-width:650.98px) {
    .section-meet-top {
        margin: 0px 0 -16rem 0px;
    }

    .section-meet-center {
        padding: 22rem 0 10rem 0 !important;
    }

    .section-meet-bottom {
        margin: -10rem 0 8rem 0;
    }

}

.single-product-data-card-container {
    display: flex;
    flex-wrap: wrap;
}

.single-product-data-card-container .single-product-data-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 106px;
    background: #F6F6F6 0% 0% no-repeat padding-box;
    border-radius: 20px;
    opacity: 1;
}

.single-product-data-card>span:first-child {
    color: var(--bs-gray-light);
    text-align: center;
    font: normal normal normal 18px/36px Poppins;
}

.single-product-data-card>span:last-child {
    text-align: center;
    font: normal normal 600 23px/36px Poppins;
}

.single-product-spec-container>div {
    padding: 0 2rem;
}

.single-product-spec-container>div:not(:nth-child(-n + 2)) {
    border-top: 1px solid #EDEDED;

}

.single-product-spec-container>div svg {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.single-product-spec-container>div span {
    font: normal normal normal 17px/66px Poppins;
    color: rgb(var(--bs-dark-rgb)) !important
}

.single-product-video-container {
    width: 78%;
    height: auto;
}

.single-product-social>div>a {
    width: 4rem;
    height: 4rem;
    margin-right: 10px !important;
}

.single-product-social>div>a>svg {
    width: 2.5rem;
    height: 2.5rem;
}

.acf-icon {
    display: flex;
    flex-direction: column;
    height: 190px;
    padding: 10px;
    padding-bottom: 15px;
    border-radius: 20px;
    color: var(--bs-dark);
}

.acf-icon>div {
    height: auto;
    margin-top: auto;
}

.acf-icon img {
    max-width: 100%;
    height: auto;
    transition: 0.3s;
}

.acf-icon p {
    width: 100%;
    margin-bottom: 0px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.acf-icon p.icon-label {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--bs-gray-600);
}

.acf-icon:hover img {
    transform: scale(1.05);
}


.icon_rep {
    width: 60px;
}

.option_acordion {
    background-color: var(--option_acordion) !important;
}

.option_acordion_text {
    fill: var(--option_acordion_text) !important;
    color: var(--option_acordion_text) !important;
}

@media (min-width:1400px) {
    .col-xxl-2-5 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* THEMA UPDATE */
/* BANNER DONKERDER MAKEN Overlay moet linksonder starten ook. Moeten dit per klant aanpassen adhv kleurstelling qua kleur, maar overlay van links onder starten is een thema update */
 .dark-overlay {
    background: rgb(var(--gradient-color));
     background: linear-gradient(45deg, rgba(var(--gradient-color),1) 20%, rgba(var(--gradient-color),0) 100%) !important;
}
/* ICONEN SECTIE Denk ook aan flex properties zie mail Evert*/
 .section-icons, .acf-icon-row {
    text-align:center;
}
 .icon_rep {
    width: 150px;
}
 .acf-icon {
    height:auto;
}
/* HAALT KNOPSTYLING WEG BIJ QUOTE BLOK - Honden tot 10 kilo en 20 kilo. Moet alleen link + pijl zijn */
 .section-image-quote-text .btn {
    padding:0px;
    text-align:left;
}
/* Zorgt in het contact gedeelte onderaan bij de video voor afstand tussen video en tekst. mag ook anders opgelost worden op eigen inzicht */
 .section-meet-center {
    padding: 38rem 0 38rem 0;
}
/* Dit zorgt ervoor dat die donkere rand verder achter de video zit */
 .section-meet-top {
    margin: 0 0 -25rem 0;
}
/* DIT ZORGT VOOR EEN LAGER VIDEO BLOK, VEEL TE HOOG ANDERS */
 .size16-9 {
    padding-bottom: 57.25% !important;
}
/* FONT KLEINER FAQ's */
 .accordion .accordion-item .accordion-header .accordion-button .h3, .accordion .accordion-item .accordion-header .accordion-button h3 {
    font-size: 17px;
}
/* ZORGT VOOR EEN BETERE UITGELIJNDE HEADER */
 .section-hero.section-hero-high .content {
    padding: 27.8rem 0 24.8rem !important;
}
/* Fixt kruimelpad als deze op 2 regels komt */
 .breadcrumb {
    line-height:1.4;
}
/* kleinere font-size titels footer */
 footer h3 {
    font-size:18px;
}
/* CORRIGEERT ABSURD GROTE PADDING IN GF VELDEN */
 .gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
     padding: 1.8rem 3rem!important;
}
 .gform_wrapper.gravity-theme .gfield textarea.large {
    height: 250px;
}
 @media (max-width:767px) {
     .section-breadcrumbs .mx-2 {
        margin: 0px 4px !important;
    }
     .acf-icon-row {
        padding:0px;
    }
     .acf-icon-row .col-lg-12 {
        padding:0px;
    }
     .section-icons, .acf-icon-row {
        text-align:left;
    }
     .section-hero.section-hero-high .content {
        padding: 15.8rem 0 11.8rem !important;
    }
     .section-meet-top {
        margin: 0 0px -14rem 0;
    }
     .section-meet-center {
        padding: 20rem 0 15rem 0 !important;
    }
} 
/* GEEN IDEE WAT DIT DOET */
 .section-hero.section-hero-low .content {
     padding: 32.5rem 0 19rem 0;
}

 @media (max-width: 767.98px) {
     .section-hero.section-hero-low .content {
         padding: 18.5rem 0 10rem 0;
    }
     .position-relative.text-center {
         text-align: left !important;
    }
     .footer-bottom {
        font-size:15px;
    }
     .gform_wrapper.gravity-theme .gsection{
         margin-top: 50px; 
         border-bottom: 1px solid #ccc;
         border-bottom: #39b54a 1px solid!important;
    }
}


.smooth-scroll{
	scroll-margin-top: 120px;
}

/* Logo-grid */
.logo-grid-container {
    border-radius: 20px;
    padding: 10px;
    display: flex;
    justify-content: center;
    height: 165px;
    border: 1px solid #efefef;
    margin-bottom: unset;
}
.logo-grid-logo {
    object-fit: contain;
    overflow: hidden;
}

.filter-btn {
    letter-spacing: 3px;
}


.active:not(.modal),
.filter-btn:hover {
    background-color: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}

.section-aanbod article {
    animation-name: project-animation;
    animation-duration: 0.2s;
    transition: transform 0.2s;
}

@keyframes project-animation {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

/* extra css */

.rounded-025 {
    border-radius: 0.5rem !important
}

.bg-light-gray {
    background-color: #f7f7f7;
}

.fill-primary {
    fill: var(--bs-primary) !important;
}