@import url(https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700&family=Open+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap);
:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, var(--f-throw-out-distance, 150px), 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) ease both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,.is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content{visibility:hidden}.is-animating .fancybox__content,.is-dragging .fancybox__content{filter:blur(0px);will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;-o-object-fit:contain;object-fit:contain;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;-o-object-fit:contain;object-fit:contain;z-index:40;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-user-select:none;-moz-user-select:none;user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translate3d(0, 0, 0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:-moz-max-content;width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width, 0))*-0.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:-webkit-clip-path .33s ease;transition:clip-path .33s ease;transition:clip-path .33s ease, -webkit-clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.f-thumbs__slide__button{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100% 0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );-webkit-clip-path:var(--clip-path);clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;-o-object-fit:cover;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;-webkit-user-select:none;-moz-user-select:none;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}
body,
p,
li,
input,
textarea,
label {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  body,
  p,
  li,
  input,
  textarea,
  label {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dosis", sans-serif;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

.text-center:not(:has(*)) {
  margin-top: 1.5rem;
}

@media only screen and (max-width: 599px) {
  .main-title {
    padding-left: 30px;
  }
}

.text-blue {
  color: #2661a2;
}

.text-blue-100 {
  color: #0092D4;
}

.text-white {
  color: #fff;
}

.bg-blue {
  background-color: #2661a2;
}

.bg-gray {
  background-color: #eeeeee;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
}

.bg-secondary {
  background-color: #0092d4 !important;
  color: white;
}

.bg-tertiary {
  background-color: #e5f4fb !important;
}

.text-secondary {
  color: #0092d4 !important;
}

.text-quaternary {
  color: #339eb7;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  filter: drop-shadow(0 0 5px grey);
}
.header.mobile-sidebar-active {
  background-color: transparent;
}
.header.mobile-sidebar-active .header-logo {
  display: none;
}
.header .header-topbar {
  background-color: #2661a2;
  width: 100%;
}
@media (max-width: 991px) {
  .header .header-topbar {
    display: none;
  }
}
.header .header-topbar li {
  margin-right: 0.5vw;
}
.header .header-topbar li:last-of-type {
  margin-right: 0;
}
.header .header-topbar a {
  position: relative;
  color: white;
  transition: all 200ms;
  font-weight: 300;
  padding: 9px;
  z-index: 10;
}
.header .header-topbar a .svg-inline--fa {
  margin-right: 3px;
}
.header .header-topbar a.active {
  background-color: #339eb7;
}
.header .header-topbar a:hover {
  text-shadow: 0 0 1px white;
}
.header .header-logo {
  margin-top: -25px;
  margin-bottom: -25px;
}
.header .header-logo .header-symbol-img {
  display: none;
  width: 70px;
}
@media (max-width: 1199px) {
  .header .header-logo {
    margin-top: -10px;
  }
  .header .header-logo img {
    width: 250px;
  }
}
@media (max-width: 991px) {
  .header .header-logo {
    text-align: center;
    margin-top: 0;
    margin-bottom: -18px;
  }
  .header .header-logo img {
    width: 200px;
  }
}
.header .header-nav {
  padding: 8px 0;
}
.header .header-nav .list-inline {
  margin-bottom: 0;
}
.header .header-main-nav li a {
  font-family: "Dosis", sans-serif;
  font-size: 18px;
  color: #2661a2;
  margin-right: 0.5vw;
  transition: all 200ms;
  position: relative;
}
@media (max-width: 1199px) {
  .header .header-main-nav li a {
    font-size: 15px;
    margin-right: 0;
  }
}
.header .header-main-nav li a:before, .header .header-main-nav li a:after {
  content: "";
  transition: all 200ms;
  transform: translateY(-100%);
}
.header .header-main-nav li a:not(.active):before {
  background-color: #339eb7;
  width: calc(100% + 20px);
  height: 97px;
  position: absolute;
  bottom: -18px;
  left: -10px;
  right: -10px;
  z-index: -1;
}
.header .header-main-nav li a:not(.active):after {
  position: absolute;
  bottom: -51px;
  left: -10px;
  right: -10px;
  z-index: -1;
  transition: all 200ms;
  transform: translateY(-120px);
  background-image: url("/img/guest/header-nav-hover-icon.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  width: calc(100% + 20px);
  height: 33px;
}
.header .header-main-nav li a:not(.active):hover {
  color: white;
}
.header .header-main-nav li a:not(.active):hover:before, .header .header-main-nav li a:not(.active):hover:after {
  transform: translateY(0);
}
.header .header-main-nav li a.active {
  color: #339eb7;
  font-weight: bold;
  position: relative;
}
.header .header-main-nav li a.active:after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #339eb7;
}
@media (max-width: 991px) {
  .header .header-main-nav {
    display: none;
  }
}
.header .header-bottom .container {
  overflow: visible;
}
.header .header-bottom-inner {
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .header .header-bottom-inner {
    display: flex;
  }
}

.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  height: 100%;
  background-color: #0092d4;
  cursor: pointer;
}
.hamburger .hamburger-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hamburger span {
  display: block;
  width: 57%;
  height: 4px;
  background-color: white;
  margin-bottom: 4px;
  border-radius: 5px;
  transition: all 200ms;
}
.hamburger.active .hamburger-inner span:first-of-type {
  transform: rotate(45deg) translateY(10px) translateX(10px);
}
.hamburger.active .hamburger-inner span:last-of-type {
  transform: rotate(-45deg) translateY(-4px) translateX(4px);
}
.hamburger.active .hamburger-inner span:nth-of-type(2) {
  opacity: 0;
}

.header.scrolled .header-topbar {
  background-color: white;
  padding: 5px 0;
}
.header.scrolled .header-topbar a {
  color: #2661a2;
}
.header.scrolled .header-topbar a.active {
  color: white;
}
.header.scrolled .header__search {
  color: #2661a2;
}
.header.scrolled .header__search input[type=search] {
  color: #2661a2;
  border-bottom: 1px solid #2661a2;
}
.header.scrolled .header__search input[type=search]::-moz-placeholder {
  color: #2661a2;
}
.header.scrolled .header__search input[type=search]::placeholder {
  color: #2661a2;
}
.header.scrolled .header__search svg path {
  fill: #2661a2;
}
@media only screen and (min-width: 992px) {
  .header.scrolled .header-bottom {
    background-color: #2661a2;
  }
}
@media (min-width: 992px) {
  .header.scrolled .header-nav {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .header.scrolled .header-logo {
    order: 0;
    margin-top: -18px;
  }
}
@media (min-width: 992px) {
  .header.scrolled .header-logo {
    margin-top: -11px;
  }
}
@media (min-width: 992px) {
  .header.scrolled .header-logo .header-logo-img {
    display: none;
  }
}
.header.scrolled .header-logo .header-symbol-img {
  display: none;
  margin-left: -4px;
}
@media (min-width: 992px) {
  .header.scrolled .header-logo .header-symbol-img {
    display: block;
  }
}
.header.scrolled .header-main-nav {
  order: 1;
  padding-left: 0;
  overflow: hidden;
}
.header.scrolled .header-main-nav li {
  display: inline-flex;
}
.header.scrolled .header-main-nav li:not(:last-child) {
  margin-right: 0;
}
.header.scrolled .header-main-nav li a {
  color: white;
  margin-right: 0;
  padding: 10px 20px;
}
@media (max-width: 1399px) {
  .header.scrolled .header-main-nav li a {
    padding: 10px;
  }
}
.header.scrolled .header-main-nav li a.active {
  color: white;
  background-color: #339eb7;
}
.header.scrolled .header-main-nav li a.active:after {
  content: unset;
}
.header.scrolled .header-main-nav li a:hover {
  background-color: #0092d4;
}
.header.scrolled .header-secondary-nav {
  order: 2;
}
.header.scrolled .header-bottom-inner {
  justify-content: unset;
  align-items: unset;
}
.header.scrolled .header-bottom-inner > .header-main-nav {
  padding-left: 2vw;
}

@media only screen and (max-width: 992px) {
  .header__search {
    display: none;
  }
}
.header__search input[type=search] {
  width: 300px;
  padding: 5px 15px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid white;
  background: transparent;
  color: white;
  opacity: 1;
  transition: all 350ms ease;
}
.header__search input[type=search]::-moz-placeholder {
  color: white;
}
.header__search input[type=search]::placeholder {
  color: white;
}
.header__search input[type=search].is-hidden {
  width: 0;
  opacity: 0;
  pointer-events: none;
}

.card {
  border-radius: 0;
  border: none;
}
.card .card-content-link svg {
  width: 16px;
  margin-left: 5px;
}
.card .card-content-link svg path {
  fill: #2661a2;
}
.card:hover .card-content-link svg {
  transform: translateX(10px);
}
.card:hover .card-content-link svg path {
  fill: #339eb7;
}
.card .card-text {
  font-weight: 400;
}

.card-date {
  opacity: 0.5;
  margin: 8px 0;
}
@media (max-width: 767px) {
  .card-date {
    font-size: 12px;
  }
}

.card-img-top-wrap {
  height: 100%;
}
.card-img-top-wrap .card-img-top {
  border-radius: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 200ms;
}
@media (max-width: 767px) {
  .card-img-top-wrap .card-img-top {
    max-height: 125px;
  }
}

.card-title {
  margin-top: 10px;
  color: #2661a2;
  font-size: 18px;
  line-height: 1.4;
  transition: all 200ms;
}
@media only screen and (max-width: 599px) {
  .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.card-title * {
  font-size: 18px;
  line-height: 1.4;
}

.card-img-top-wrap {
  overflow: hidden;
}

.card-link:hover .card-title {
  color: #339eb7;
}
.card-link:hover .card-content-link svg {
  transform: translateX(10px);
}
.card-link:hover .card-content-link svg path {
  fill: #339eb7;
}
.card-link:hover .card-img-top {
  transform: scale(1.1);
}

.fa-arrow-right-long {
  transition: all 200ms;
}
.fa-arrow-right-long:hover {
  transform: translateX(10px);
}

.btn {
  border-radius: 0;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
}
.btn.btn-white {
  background-color: white;
  color: #2661a2;
}
.btn.btn-primary {
  background-color: #2661a2;
  border-color: #2661a2;
  color: white;
}
.btn.btn-primary:hover {
  background-color: #339eb7;
  border-color: #339eb7;
}
.btn.btn-quaternary {
  background-color: #339eb7;
  border-color: #339eb7;
  color: white;
}
.btn.btn-quaternary:hover {
  background-color: #2661a2;
  border-color: #2661a2;
}
.btn.btn-primary--submit {
  position: relative;
  min-width: 150px;
  padding: 14px 20px;
  border: 0;
}
.btn.btn-primary--submit::after {
  height: 100%;
  width: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-image: url("/img/guest/titlebar-right-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

button {
  border: none;
}

.back-btn {
  background-color: #2661a2;
  color: white;
  position: relative;
  padding: 15px 25px;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 599px) {
  .back-btn {
    padding: 10px 15px;
  }
}
.back-btn svg {
  transition: all 200ms;
}
.back-btn:before {
  content: "";
  background-image: url("/img/guest/titlebar-right-arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  transform: rotate(180deg);
}
@media only screen and (max-width: 599px) {
  .back-btn:before {
    display: none;
  }
}
.back-btn:hover {
  color: white;
  background-color: #339eb7;
}
.back-btn:hover svg {
  transform: translateX(-5px);
}

@media only screen and (max-width: 599px) {
  .text-center:has(.company-logo--desktop) {
    display: none;
  }
}

section.companies {
  position: relative;
  min-height: 308px;
  margin: 1.5rem 0;
  background-color: #0092d4;
}
@media (max-width: 767px) {
  section.companies .titlebar-wrap {
    margin-right: 0;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  section.companies {
    margin-left: -42px;
    margin-right: -42px;
    margin-top: 0;
  }
  section.companies .titlebar-wrap {
    margin-left: -12px;
  }
}
section.companies:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("/img/guest/bedrijven.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 120px;
  width: 100%;
  opacity: 0.1;
}
section.companies .companies-title {
  background-color: #e5f4fb;
  color: #2661a2;
  padding: 15px 20px;
  height: 100%;
}
section.companies .companies-title * {
  font-size: 20px;
  font-weight: bold;
}
section.companies .companies-list {
  position: relative;
  background-color: #0092d4;
}
section.companies .companies-list:before {
  content: "";
  background-image: url("/img/guest/white-cut-top.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  section.companies .companies-list:before {
    content: unset;
  }
}
section.companies .companies-list .carousel-indicators {
  bottom: -20%;
}
section.companies .companies-list .carousel-item {
  padding: 3vw;
}
@media (max-width: 767px) {
  section.companies .companies-list .carousel-item {
    padding: 11vw;
  }
}
section.companies .companies-list .carousel-item h2,
section.companies .companies-list .carousel-item h3,
section.companies .companies-list .carousel-item h4,
section.companies .companies-list .carousel-item h5,
section.companies .companies-list .carousel-item h6 {
  color: white;
  font-size: 24px;
  line-height: 1.3;
}
section.companies .companies-list .carousel-item .company-link {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .business-page-toggle .toggle-links-wrap {
    margin-left: -42px;
  }
  .business-page-toggle .toggle-content-left .video-section {
    margin-top: -30px;
    position: relative;
  }
}

.company-sidebar-logo-carousel:before {
  content: "";
  background-image: url("/img/guest/white-cut-top.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  height: 28px;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
}
@media (max-width: 767px) {
  .company-sidebar-logo-carousel:before {
    display: none;
  }
}
.company-sidebar-logo-carousel .owl-nav {
  position: absolute;
  top: 80%;
  width: 86%;
  left: 10%;
}
@media (max-width: 767px) {
  .company-sidebar-logo-carousel .owl-nav {
    width: 77%;
  }
}
.company-sidebar-logo-carousel .owl-nav [class*=owl-]:hover {
  background: transparent;
}
.company-sidebar-logo-carousel .owl-nav button span {
  background: transparent;
}
@media only screen and (max-width: 599px) {
  .company-sidebar-logo-carousel .owl-dots {
    margin-top: 20px !important;
    padding-bottom: 2rem;
  }
}
.company-sidebar-logo-carousel .owl-dots .owl-dot span {
  background: white !important;
  border: 2px solid white !important;
}
.company-sidebar-logo-carousel .owl-dots .owl-dot.active span {
  background: #0092d4 !important;
}
.company-sidebar-logo-carousel .owl-stage {
  padding-top: 20px;
}
.company-sidebar-logo-carousel .company-carousel-logo {
  padding: 30px;
}
@media only screen and (max-width: 599px) {
  .company-sidebar-logo-carousel .company-carousel-logo {
    padding: 30px 2.75rem;
  }
}
.company-sidebar-logo-carousel .company-carousel-logo .company-carousel-logo-title {
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
}
.company-sidebar-logo-carousel .company-carousel-logo .row {
  align-items: center;
}

.load-more-items {
  transition: all 200ms;
}
.load-more-items svg {
  padding-left: 10px;
  transition: all 200ms;
  transform-origin: center;
}
.load-more-items.active svg {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 10px;
}

.more-items {
  opacity: 0;
  height: 0;
  transition: all 200ms;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: top;
}
.more-items.active {
  opacity: 1;
  height: auto;
  pointer-events: all;
  transform: scaleY(1);
}

@media only screen and (max-width: 599px) {
  .companies-and-messages .toggle-links-wrap {
    margin: 0 -45px;
  }
}

@media only screen and (max-width: 768px) {
  h2.company-name {
    display: none;
  }
}

.company-logo--mobile {
  width: 200px;
  height: auto;
  float: left;
  padding: 0 10px 10px;
}
@media only screen and (max-width: 768px) {
  .company-logo--mobile {
    width: 130px;
  }
}

@media only screen and (max-width: 768px) {
  .company-logo--desktop {
    display: none;
  }
}

@media only screen and (max-width: 599px) {
  .embed-responsive-item {
    height: 200px;
  }
}

section.featured .card {
  background-color: #e5f4fb;
}
@media (max-width: 767px) {
  section.featured .card {
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  section.featured {
    margin-top: 4vw;
  }
}

.news-category-page .featured-news-item a {
  border-bottom: 2px solid #eee;
  padding-bottom: 50px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .news-category-page .featured-news-item a {
    padding-bottom: 0;
  }
}

.featured-news-item {
  min-height: 210px;
}
@media (max-width: 570px) {
  .featured-news-item .card-body {
    padding-left: 0;
    padding-right: 0;
  }
}
.featured-news-item .card-title {
  font-size: 28px;
}
@media (max-width: 767px) {
  .featured-news-item .card-title {
    margin-top: 0;
    font-size: 22px;
  }
}
@media only screen and (max-width: 599px) {
  .featured-news-item .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .popular-news {
    margin-top: 15px;
  }
}
.popular-news .titlebar-wrap {
  margin-bottom: 18px;
}
.popular-news .popular-news-item-image {
  position: relative;
}
.popular-news .popular-news-item-image img {
  width: 100%;
}
.popular-news .popular-news-item-category {
  background-color: #2661a2;
  color: white;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px;
}
.popular-news .popular-news-item-title {
  padding-top: 15px;
}
@media only screen and (max-width: 599px) {
  .popular-news .popular-news-item-title .card-content-link {
    padding-left: 5px;
  }
}
.popular-news .popular-news-item-title .card-content-link svg {
  width: 18px;
}
@media only screen and (max-width: 599px) {
  .popular-news .popular-news-item-title .card-content-link svg {
    display: none;
  }
}
.popular-news .popular-news-item-date {
  margin-top: 0;
}
.popular-news .popular-news-items {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media only screen and (min-width: 769px) {
  .popular-news .popular-news-item.card {
    width: 33.3333333333%;
  }
}

.popular-news-carousel .owl-stage-outer {
  overflow: visible;
}
.popular-news-carousel .owl-nav {
  top: 50px;
  width: calc(100% + 45px);
}
@media only screen and (max-width: 599px) {
  .popular-news-carousel .owl-nav {
    top: 40px;
  }
}
.popular-news-carousel .owl-nav .owl-prev {
  display: none;
}
.popular-news-carousel::after {
  position: absolute;
  top: 0;
  left: -50px;
  bottom: 0;
  width: 50px;
  content: "";
  background: white;
}

section.vacancies {
  margin: 1.5rem 0;
}
section.vacancies .titlebar-wrap {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  section.vacancies .titlebar-wrap {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  section.vacancies .vacancies-items {
    margin-left: 15px;
    width: calc(100% - 30px);
  }
}
section.vacancies .vacancies-items .vacancy-item {
  position: relative;
  border-bottom: 1px solid #eee;
  padding-top: 20px;
}
section.vacancies .vacancies-items .vacancy-item a {
  width: 100%;
}
section.vacancies .vacancies-items .vacancy-item a:hover .vacancy-item-title {
  color: #339eb7;
}
section.vacancies .vacancies-items .vacancy-item a:hover .vacancy-item-title-link svg {
  transform: translateX(10px);
}
section.vacancies .vacancies-items .vacancy-item a:hover .vacancy-item-title-link svg path {
  fill: #339eb7;
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-inner {
  display: flex;
  width: 100%;
}
section.vacancies .vacancies-items .vacancy-item:first-of-type {
  padding-top: 0;
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-image {
  height: 80px;
  margin-right: 15px;
  width: 125px;
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-image img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-subtitle {
  opacity: 0.5;
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-title-wrap {
  width: 100%;
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-title {
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  section.vacancies .vacancies-items .vacancy-item .vacancy-item-title h3 {
    padding-right: 45px;
  }
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-title-link {
  position: absolute;
  right: 20px;
  top: 25%;
}
section.vacancies .vacancies-items .vacancy-item .vacancy-item-title-link svg {
  width: 18px;
}

@media only screen and (max-width: 599px) {
  section.news-category {
    margin-top: 1.5rem;
  }
}
section.news-category .titlebar-wrap {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  section.news-category .titlebar-wrap {
    margin-right: 0;
  }
}
section.news-category .news-category-items {
  margin-top: 20px;
}
@media (min-width: 768px) {
  section.news-category .news-category-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0 40px;
    grid-template-areas: ". ." ". ." ". .";
  }
}
@media (max-width: 767px) {
  section.news-category .news-category-items {
    gap: 0 12px;
  }
  section.news-category .news-category-items .owl-nav {
    top: 20%;
  }
}
section.news-category .horizontal-news-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}
@media only screen and (max-width: 599px) {
  section.news-category .horizontal-news-item {
    margin-bottom: 0;
    border-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  section.news-category .horizontal-news-item {
    min-height: 275px !important;
  }
}
section.news-category .horizontal-news-item .card-body {
  padding: 0;
}

@media only screen and (max-width: 599px) {
  section.news-category:has(.titlebar-wrap):not(:has(.featured)) + .advertisement {
    margin-top: -1rem;
  }
}

@media (max-width: 767px) {
  section.news-category .related-news .titlebar-wrap {
    margin-right: -42px;
  }
}

@media only screen and (max-width: 599px) {
  .news-category-carousel {
    position: relative;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 599px) {
  .news-category-carousel .owl-stage-outer {
    position: relative;
    overflow: visible;
  }
}
.news-category-carousel .owl-stage-outer::before {
  position: absolute;
  top: 0;
  left: -50px;
  bottom: 0;
  width: 50px;
  background: white;
  z-index: 3;
  content: "";
}
@media only screen and (max-width: 599px) {
  .news-category-carousel .owl-stage {
    display: flex;
    height: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .news-category-carousel .owl-nav {
    right: -27px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 599px) {
  .news-category-carousel .owl-nav .owl-prev {
    display: none !important;
  }
}

.news-category:has(.featured) .news-category-carousel::before {
  display: none;
  position: absolute;
  top: -1.5rem;
  right: -42px;
  left: 0;
  height: 1px;
  background: #EEEEEE;
  content: "";
}
@media only screen and (max-width: 599px) {
  .news-category:has(.featured) .news-category-carousel::before {
    display: block;
  }
}
.news-category:has(.featured) .news-category-carousel::after {
  display: none;
  position: absolute;
  bottom: 0;
  right: -42px;
  left: 0;
  height: 1px;
  background: #EEEEEE;
  content: "";
}
@media only screen and (max-width: 599px) {
  .news-category:has(.featured) .news-category-carousel::after {
    display: block;
  }
}

@media only screen and (max-width: 599px) {
  .agenda-items {
    margin-bottom: 0;
  }
}
.agenda-items .agenda-item {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
@media only screen and (max-width: 599px) {
  .agenda-items .agenda-item {
    max-width: 109px;
  }
}
@media (max-width: 767px) {
  .agenda-items .agenda-item {
    margin-top: 0px;
    padding: 0 12px;
  }
}
.agenda-items .agenda-item a {
  width: 100%;
}
@media only screen and (max-width: 599px) {
  .agenda-items .agenda-item .fa-arrow-right-long {
    display: none;
  }
}
.agenda-items .agenda-item .agenda-item-inner {
  display: flex;
  align-items: center;
  border-left: 4px solid #2661a2;
}
.agenda-items .agenda-item .agenda-item-title-wrap {
  width: 85%;
}
@media only screen and (max-width: 599px) {
  .agenda-items .agenda-item .agenda-item-title-wrap {
    width: 100%;
  }
}
.agenda-items .agenda-item .agenda-item-title-wrap .agenda-item-title {
  margin-bottom: 0;
  transition: all 200ms;
}
@media only screen and (max-width: 599px) {
  .agenda-items .agenda-item .agenda-item-title-wrap .agenda-item-title {
    margin-bottom: 20px;
    font-weight: 300;
  }
}
.agenda-items .agenda-item .agenda-date {
  font-family: "Dosis", sans-serif;
  color: #2661a2;
  font-size: 30px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  width: 80px;
  transition: all 200ms;
}
@media only screen and (max-width: 599px) {
  .agenda-items .agenda-item .agenda-date {
    width: 90px;
  }
}
.agenda-items .agenda-item .agenda-date span {
  width: 100%;
}
.agenda-items .agenda-item .agenda-date span.day {
  font-weight: bold;
}
.agenda-items .agenda-item .agenda-date span.month {
  font-size: 18px;
  font-weight: 500;
  margin-top: -15px;
}
.agenda-items .agenda-item:hover .agenda-item-title,
.agenda-items .agenda-item:hover .agenda-date {
  color: #339eb7;
}
.agenda-items .agenda-item:hover .fa-arrow-right-long {
  transform: translateX(10px);
}
.agenda-items .agenda-item:hover .fa-arrow-right-long path {
  fill: #339eb7;
}

@media (max-width: 767px) {
  .agenda-carousel .owl-stage-outer {
    position: relative;
    overflow: visible;
  }
  .agenda-carousel .owl-stage-outer::before {
    position: absolute;
    top: 0;
    left: -50px;
    bottom: 0;
    width: 50px;
    background: white;
    content: "";
    z-index: 3;
  }
  .agenda-carousel .owl-prev {
    display: none;
  }
  .agenda-carousel .agenda-item-inner {
    border-left: none !important;
    border-top: 4px solid #eeeeee;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .agenda-carousel .agenda-item-subtitle {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .toggle .agenda .agenda-item {
    max-width: 100%;
  }
}

section.banner {
  background-color: #0092d4;
  width: 100%;
  position: relative;
  padding: 2vw;
  color: white;
}
@media (min-width: 768px) {
  section.banner {
    height: 100%;
  }
}
@media (max-width: 767px) {
  section.banner {
    margin-left: -42px;
    margin-right: -42px;
    width: calc(100% + 84px);
    padding: 7vw 3vw;
  }
}
section.banner:hover .banner-link {
  border-bottom: 1px solid white;
}
section.banner:hover svg {
  transform: translateY(3px) translateX(5px);
}
section.banner .banner-link {
  margin-top: 5px;
  display: inline-block;
  transition: all 200ms;
}
section.banner .banner-title {
  z-index: 1;
  position: relative;
  max-width: 80%;
}
section.banner .banner-title h2,
section.banner .banner-title h3,
section.banner .banner-title h4,
section.banner .banner-title h5,
section.banner .banner-title h6 {
  font-weight: bold;
}
@media (max-width: 767px) {
  section.banner .banner-title h2,
  section.banner .banner-title h3,
  section.banner .banner-title h4,
  section.banner .banner-title h5,
  section.banner .banner-title h6 {
    font-size: 18px;
  }
}
section.banner .fa-arrow-right-long {
  width: 22px;
  height: auto;
  transform: translateY(3px);
}
section.banner .fa-arrow-right-long path {
  fill: white;
}
section.banner .banner-img-wrap {
  height: 100%;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  float: right;
  position: absolute;
  right: 0;
  top: 0;
}
section.banner .banner-img-wrap .banner-img {
  mix-blend-mode: soft-light;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.banner .banner-img-wrap:after {
  content: "";
  background: linear-gradient(to right, #0092d4, rgba(0, 0, 0, 0));
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.horizontal-news-item .card-content-link {
  opacity: 0;
}
.horizontal-news-item .card-link:hover .card-content-link {
  opacity: 1;
}

section.social .titlebar-wrap {
  margin-bottom: 18px;
}
section.social .social-items .social-item {
  background-color: #2661a2;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
section.social .social-items .social-item:before {
  content: "";
  background-color: #339eb7;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.2s;
}
section.social .social-items .social-item:hover:before {
  transform: translateX(0);
}
section.social .social-items .social-item svg {
  position: relative;
  z-index: 1;
  height: 23px;
}
section.social .social-items .social-item svg path {
  fill: white;
}

.footer {
  background-color: #2661a2;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 20px;
    padding-inline: 15px;
    padding-bottom: 90px;
  }
}
.footer .footer-logo-wrap {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .footer .footer-logo-wrap {
    display: none;
  }
}
.footer .footer-logo-wrap .footer-logo {
  margin-top: -78px;
}
@media (max-width: 992px) {
  .footer .footer-logo-wrap .footer-logo {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .footer .footer-nav-wrap {
    padding-top: 20px;
  }
}
.footer .footer-nav {
  row-gap: 10px;
}
.footer .footer-nav .nav-item {
  margin-right: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer .footer-nav .nav-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer .footer-nav .nav-item .nav-link {
  background-color: #339eb7;
  color: white;
  padding: 4px 10px;
  font-size: 16px;
  font-family: "Dosis", sans-serif;
}
@media (max-width: 767px) {
  .footer .footer-nav .nav-item .nav-link {
    font-size: 14px;
    display: inline-block;
  }
}
.footer .footer-nav .nav-item .nav-link .svg-inline--fa {
  width: 10px;
  margin-right: 10px;
}
.footer .footer-nav .nav-item .nav-link .svg-inline--fa path {
  fill: white;
}
.footer .footer-nav .nav-item .nav-link:hover .svg-inline--fa {
  transform: translateX(5px);
}
.footer .footer-socials {
  color: white;
}
.footer .footer-socials p {
  margin-right: 15px;
  margin-bottom: 0;
  font-family: "Dosis", "sans-serif";
  font-weight: 400;
}
@media only screen and (max-width: 599px) {
  .footer .footer-socials p {
    margin-bottom: 5px;
  }
}
.footer .footer-socials .footer-socials-label {
  margin-right: 15px;
}
.footer .footer-socials .footer-socials-label * {
  font-size: 22px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer .footer-socials .footer-socials-label {
    margin-bottom: 5px;
  }
  .footer .footer-socials .footer-socials-label * {
    font-size: 16px;
  }
}
.footer .footer-socials svg {
  width: 24px;
  height: 24px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .footer .footer-socials svg {
    margin-right: 5px;
  }
}
.footer .footer-socials .footer-social {
  transition: all 200ms;
  transform-origin: center;
  position: relative;
  z-index: 1;
}
.footer .footer-socials .footer-social:hover {
  transform: scale(1.2);
}
.footer .footer-inner {
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 599px) {
  .footer__social-media {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
  }
}
.footer__social-media img {
  max-width: 150px;
}

@media (max-width: 767px) {
  .copyright * {
    font-size: 10px;
  }
}

.vervolgheader {
  padding: 8vh 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 599px) {
  .vervolgheader {
    min-height: 135px;
    padding: 55px 0;
  }
}
.vervolgheader .vervolgheader-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.vervolgheader:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #0092d4;
  opacity: 0.65;
}
.vervolgheader .vervolgheader-title {
  z-index: 1;
  position: relative;
  color: white;
}
@media only screen and (max-width: 599px) {
  .vervolgheader .vervolgheader-title h1 {
    font-size: 22px;
    font-weight: 600;
  }
}
.vervolgheader .vervolgheader-content {
  position: relative;
  z-index: 1;
}
.vervolgheader .vervolgheader-content .vervolgheader-title {
  color: white;
}
.vervolgheader .vervolgheader-content .vervolgheader-title * {
  font-size: 48px;
  font-weight: bold;
}
@media only screen and (max-width: 599px) {
  .vervolgheader .vervolgheader-content .vervolgheader-title * {
    font-size: 22px;
  }
}
.vervolgheader .vervolgheader-content .vervolgheader-searchbar input {
  border: none;
  color: #0092d4;
  font-size: 18px;
  width: 100%;
}
@media (max-width: 767px) {
  .vervolgheader .vervolgheader-content .vervolgheader-searchbar input {
    font-size: 14px;
  }
}
.vervolgheader .vervolgheader-content .vervolgheader-searchbar input::-moz-placeholder {
  color: #0092d4;
  font-size: 18px;
}
.vervolgheader .vervolgheader-content .vervolgheader-searchbar input::placeholder {
  color: #0092d4;
  font-size: 18px;
}
@media (max-width: 767px) {
  .vervolgheader .vervolgheader-content .vervolgheader-searchbar input::-moz-placeholder {
    font-size: 14px;
  }
  .vervolgheader .vervolgheader-content .vervolgheader-searchbar input::placeholder {
    font-size: 14px;
  }
}
.vervolgheader .vervolgheader-content .vervolgheader-searchbar .search-icon {
  background-color: transparent;
}
.vervolgheader .vervolgheader-content .vervolgheader-searchbar .search-icon svg {
  height: 22px;
}
.vervolgheader .vervolgheader-content .vervolgheader-searchbar .search-icon svg path {
  fill: #0092d4;
}
.vervolgheader.business-page .vervolgheader-content .vervolgheader-title {
  margin-bottom: 20px;
}
.vervolgheader.business-page .vervolgheader-content .vervolgheader-title * {
  font-size: 36px;
}
@media (max-width: 767px) {
  .vervolgheader.business-page .vervolgheader-content .vervolgheader-title * {
    font-size: 22px;
  }
}
.vervolgheader.business-page .business-img {
  width: 210px;
  height: auto;
  margin-bottom: -1px;
}
@media only screen and (max-width: 599px) {
  .vervolgheader.business-page .business-img {
    width: 180px;
  }
}
@media only screen and (max-width: 599px) {
  .vervolgheader:has(.vervolgheader-searchbar) {
    padding: 1.5rem 0;
  }
}

.vervolgheader-searchbar-input,
.searchbar-input {
  border-radius: 25px;
  background-color: #fff;
  padding: 10px 30px;
  border: none;
  margin: 0 auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  .vervolgheader-searchbar-input,
  .searchbar-input {
    align-items: center;
    padding: 5px 20px;
    border: 1px solid #339eb7;
  }
}
@media (max-width: 767px) {
  .vervolgheader-searchbar-input,
  .searchbar-input {
    width: 100%;
  }
}
.vervolgheader-searchbar-input .search-icon,
.vervolgheader-searchbar-input button[type=submit],
.searchbar-input .search-icon,
.searchbar-input button[type=submit] {
  background: white;
}
@media only screen and (max-width: 599px) {
  .vervolgheader-searchbar-input .search-icon svg,
  .vervolgheader-searchbar-input button[type=submit] svg,
  .searchbar-input .search-icon svg,
  .searchbar-input button[type=submit] svg {
    height: 16px !important;
  }
}
.vervolgheader-searchbar-input .search-icon svg path,
.vervolgheader-searchbar-input button[type=submit] svg path,
.searchbar-input .search-icon svg path,
.searchbar-input button[type=submit] svg path {
  fill: #339eb7;
}

@media only screen and (max-width: 599px) {
  .business-page + .container .row .col-lg-8 h2 {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .business-page + .container .row .col-lg-8 .news-category {
    display: none;
  }
}
@media only screen and (min-width: 600px) {
  .business-page + .container .row .col-lg-4 .news-category {
    display: none;
  }
}

.vervolg-intro * {
  color: #2661a2;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
}
.vervolg-intro a {
  font-style: normal;
  color: #2661a2;
  font-weight: bold;
}

@media (max-width: 767px) {
  section.agenda .toggle-content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) {
  section.agenda {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  section.agenda {
    margin-right: -42px;
    margin-bottom: 0;
  }
  section.agenda .toggle {
    margin-left: -42px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 599px) {
  section.agenda .toggle .agenda-date {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 599px) {
  section.agenda .toggle .agenda-item-title {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 767px) and (max-width: 599px) {
  section.agenda .toggle .owl-nav {
    right: -15px;
  }
}
@media (max-width: 767px) {
  section.agenda .agenda-item {
    padding-left: 54px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 599px) {
  section.agenda .agenda-item {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
}
section.agenda .agenda-content-wrap {
  padding-top: 20px;
}
section.agenda .agenda-content {
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  height: 0;
}
section.agenda .agenda-content section {
  margin: 0;
}
section.agenda .agenda-content.active {
  opacity: 1;
  pointer-events: auto;
  height: auto;
}
section.agenda .agenda-items .agenda-item .card-title.agenda-item-title {
  padding-top: 12px;
}
@media (max-width: 767px) {
  section.agenda .agenda-items .agenda-item .card-title.agenda-item-title {
    padding-top: 0;
  }
}
section.agenda .agenda-items .agenda-item .card-title.agenda-item-title * {
  font-size: 25px;
}
@media (max-width: 767px) {
  section.agenda .agenda-items .agenda-item .card-title.agenda-item-title * {
    font-size: 16px;
  }
}
section.agenda .agenda-items .agenda-item .agenda-date span.day {
  font-size: 34px;
}
@media only screen and (max-width: 599px) {
  section.agenda .agenda-items .agenda-item .agenda-date span.day {
    font-size: 30px;
  }
}
section.agenda .agenda-items .agenda-item .agenda-item-subtitle {
  padding-top: 5px;
}
section.agenda .agenda-items .agenda-item .fa-arrow-right-long {
  height: 23px;
}
section.agenda.agenda-sidebar {
  margin: 1.5rem 0;
}
section.agenda.agenda-sidebar .agenda-items .agenda-item .card-title.agenda-item-title * {
  font-size: 20px;
}
@media (max-width: 767px) {
  section.agenda.agenda-sidebar .agenda-items .agenda-item .card-title.agenda-item-title * {
    font-size: 16px;
  }
}
section.agenda.agenda-sidebar .agenda-items .agenda-item .fa-arrow-right-long {
  height: 16px;
}
@media (max-width: 767px) {
  section.agenda.agenda-sidebar {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  section.agenda .owl-nav {
    top: 30%;
    right: -58px;
  }
  section.agenda .owl-next {
    right: 27px;
  }
}

.agenda-item-subtitle {
  opacity: 0.5;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #0092d4;
  z-index: 9;
  transform: translateX(100%);
  transition: all 200ms;
  padding: 30px;
  overflow: scroll;
}
.mobile-sidebar.active {
  transform: translateX(0);
}

.mobile-sidebar-logo {
  text-align: center;
  margin-top: -18px;
}
.mobile-sidebar-logo img {
  width: 200px;
}

.mobile-sidebar-searchbar {
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-sidebar-searchbar .mobile-sidebar-search-wrap {
  border-bottom: 1px solid white;
  display: flex;
  justify-content: space-between;
}
.mobile-sidebar-searchbar .mobile-sidebar-search-input {
  width: 100%;
}

.mobile-sidebar-nav-wrap h2 {
  color: white;
  font-size: 20px;
  font-weight: 600;
}
.mobile-sidebar-nav-wrap .mobile-sidebar-nav {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 4px;
}
.mobile-sidebar-nav-wrap .mobile-sidebar-nav li {
  width: 100%;
  border-bottom: 1px solid #1d7ebc;
  padding-bottom: 5px;
}
.mobile-sidebar-nav-wrap .mobile-sidebar-nav li a {
  color: white;
  font-size: 14px;
}
.mobile-sidebar-nav-wrap .mobile-sidebar-nav li a .svg-inline--fa {
  min-width: 24px;
}
.mobile-sidebar-nav-wrap .mobile-sidebar-nav li a.active {
  font-weight: bold;
}

.mobile-sidebar-search-input {
  background-color: transparent;
  border: none;
  color: #fff;
  font-weight: 300;
}
.mobile-sidebar-search-input::-moz-placeholder {
  color: #fff;
  font-weight: 300;
}
.mobile-sidebar-search-input::placeholder {
  color: #fff;
  font-weight: 300;
}

button.mobile-sidebar-searchbar-icon {
  margin-left: -30px;
  background: transparent;
  border: none;
}
button.mobile-sidebar-searchbar-icon svg path {
  fill: #fff;
}

input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-control[type=file] {
  border-radius: 0;
  border: none;
}

input[type=file]::file-selector-button {
  background-color: #339eb7;
}

.page-form input {
  color: rgba(0, 0, 0, 0.4);
}
.page-form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.page-form input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.page-form label {
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
}
.page-form input,
.page-form textarea {
  border-radius: 12px;
}
.page-form .btn {
  border-radius: 0 !important;
  background-color: #339eb7;
  border: none;
  font-style: normal;
}
.page-form .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .page-form .form-footer {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.page-form .attachments-wrap {
  display: flex;
  align-items: center;
}
.page-form .attachments-wrap .add-file {
  margin-left: 20px;
}
.page-form .attachments-wrap .file-wrap {
  position: relative;
}
.page-form .attachments-wrap .file-wrap [type=file] {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 5;
}
.page-form .attachments-wrap .btn {
  margin-left: 10px;
}
.page-form .attachments-wrap .btn:hover {
  background-color: #2661a2;
}

@media (max-width: 767px) {
  section.business-categories-wrap {
    padding-top: 4vw;
  }
}
section.business-categories-wrap .business-categories-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 20px 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 769px) and (max-width: 1400px) {
  section.business-categories-wrap .business-categories-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  section.business-categories-wrap .business-categories-list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 10px;
  }
}
section.business-categories-wrap .business-categories-list li {
  position: relative;
  min-height: 140px;
}
@media (max-width: 767px) {
  section.business-categories-wrap .business-categories-list li {
    height: 100px;
  }
}
section.business-categories-wrap .business-categories-list li a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}
section.business-categories-wrap .business-categories-list li span {
  max-width: calc(100% - 50px);
  color: #2661a2;
  font-weight: bold;
  font-size: 22px;
  font-family: "Dosis", sans-serif;
}
@media (max-width: 767px) {
  section.business-categories-wrap .business-categories-list li span {
    max-width: 100%;
    font-size: 15px;
    text-align: center;
  }
}
section.business-categories-wrap .business-categories-list li img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.business-categories-wrap .business-categories-list li:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #e5f4fb;
  opacity: 0.9;
  transition: all 200ms;
}
section.business-categories-wrap .business-categories-list li .svg-inline--fa {
  transform: translateX(0);
  transition: all 200ms;
  margin-left: -1rem;
  opacity: 0;
  color: white;
}
@media only screen and (max-width: 768px) {
  section.business-categories-wrap .business-categories-list li .svg-inline--fa {
    display: none;
  }
}
section.business-categories-wrap .business-categories-list li:hover {
  color: white;
}
section.business-categories-wrap .business-categories-list li:hover span {
  color: white;
}
section.business-categories-wrap .business-categories-list li:hover .svg-inline--fa {
  transform: translateX(25px);
  opacity: 1;
}
section.business-categories-wrap .business-categories-list li:hover:before {
  background-color: #339eb7;
}

section.shoppingmall {
  margin: -1rem 0 3rem;
}
@media (max-width: 767px) {
  section.shoppingmall {
    margin-top: 0;
  }
}
section.shoppingmall .shoppingmall-items {
  margin-top: 20px;
}
@media (max-width: 767px) {
  section.shoppingmall .shoppingmall-items {
    margin-right: 15px;
  }
}
section.shoppingmall .shoppingmall-item {
  position: relative;
}
section.shoppingmall .shoppingmall-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.shoppingmall .shoppingmall-item .shoppingmall-item-img {
  width: 100%;
  height: 185px;
  position: relative;
}
@media (max-width: 767px) {
  section.shoppingmall .shoppingmall-item .shoppingmall-item-img {
    height: 125px;
  }
}
section.shoppingmall .shoppingmall-item .shoppingmall-item-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.8;
  z-index: 1;
  transition: all 200ms;
}
section.shoppingmall .shoppingmall-item .shoppingmall-item-content {
  position: absolute;
  z-index: 1;
  color: #2661a2;
  font-weight: bold;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 599px) {
  section.shoppingmall .shoppingmall-item .shoppingmall-item-content {
    padding-inline: 10px;
  }
}
section.shoppingmall .shoppingmall-item .shoppingmall-item-content * {
  font-weight: bold;
}
@media (max-width: 767px) {
  section.shoppingmall .shoppingmall-item .shoppingmall-item-content * {
    font-size: 18px;
  }
}
section.shoppingmall .shoppingmall-item .shoppingmall-item-content h3 {
  max-width: calc(100% - 60px);
}
section.shoppingmall .shoppingmall-item .shoppingmall-item-content .svg-inline--fa {
  margin-left: -1rem;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.2s;
}
@media only screen and (max-width: 599px) {
  section.shoppingmall .shoppingmall-item .shoppingmall-item-content .svg-inline--fa {
    display: none;
  }
}
section.shoppingmall .shoppingmall-item .shoppingmall-item-content .svg-inline--fa path {
  fill: white;
}
section.shoppingmall .shoppingmall-item:hover .shoppingmall-item-content {
  color: white;
}
section.shoppingmall .shoppingmall-item:hover .shoppingmall-item-content .svg-inline--fa {
  opacity: 1;
  transform: translateX(calc(1rem + 5px));
}
section.shoppingmall .shoppingmall-item:hover .shoppingmall-item-img:before {
  background-color: #339eb7;
}
@media only screen and (max-width: 599px) {
  section.shoppingmall .owl-stage-outer {
    position: relative;
    overflow: visible;
  }
}
section.shoppingmall .owl-stage-outer::before {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -50px;
  width: 50px;
  background: white;
  z-index: 3;
  content: "";
}
@media only screen and (max-width: 599px) {
  section.shoppingmall .owl-stage-outer::before {
    display: block;
  }
}
section.shoppingmall .owl-nav {
  top: 35%;
}
@media only screen and (max-width: 599px) {
  section.shoppingmall .owl-nav {
    right: -45px;
  }
}
section.shoppingmall .owl-nav .owl-prev {
  display: none;
}

section.tabbed-section {
  margin: 1.5rem 0;
}
section.tabbed-section .tabbed-section-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 5px solid #2661a2;
  overflow: hidden;
  padding: 0;
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab {
  display: inline-block;
  font-size: 18px;
  color: #2661a2;
  cursor: pointer;
  transition: all 200ms;
  background-color: #e5f4fb;
  font-family: "Dosis", sans-serif;
  width: 100%;
  padding: 10px 30px;
  position: relative;
}
@media (max-width: 1399px) {
  section.tabbed-section .tabbed-section-tabs .tabbed-section-tab {
    padding: 0 30px;
  }
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab span {
  position: relative;
  z-index: 1;
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #2661a2;
  transition: all 200ms;
  transform: skew(20deg);
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab:first-of-type:before {
  left: -20px;
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab:last-of-type:before {
  right: -20px;
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab:hover, section.tabbed-section .tabbed-section-tabs .tabbed-section-tab.active {
  color: white;
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab:hover:first-of-type:before, section.tabbed-section .tabbed-section-tabs .tabbed-section-tab.active:first-of-type:before {
  width: calc(100% + 10px);
}
section.tabbed-section .tabbed-section-tabs .tabbed-section-tab:hover:last-of-type:before, section.tabbed-section .tabbed-section-tabs .tabbed-section-tab.active:last-of-type:before {
  width: calc(100% + 32px);
}
section.tabbed-section .tabbed-articles-wrap {
  opacity: 0;
  height: 0;
  pointer-events: none;
}
section.tabbed-section .tabbed-articles-wrap.active {
  opacity: 1;
  height: 100%;
  pointer-events: all;
}
section.tabbed-section .tabbed-articles-wrap .tabbed-articles-items .tabbed-article {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}
section.tabbed-section .tabbed-articles-wrap .tabbed-articles-items .tabbed-article .card-date p {
  margin-bottom: 0;
}
section.tabbed-section .tabbed-articles-wrap .tabbed-articles-items .tabbed-article:hover .card-title {
  color: #339eb7;
}

@media (max-width: 767px) {
  .video-section {
    margin-right: -42px;
    margin-top: 0;
    margin-left: -42px;
  }
}

.video-wrap {
  position: relative;
}
.video-wrap:not(.playing):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98.5%;
  background-color: #0092d4;
  opacity: 0.8;
  transition: all 200ms;
}
.video-wrap svg {
  height: 30px;
}
.video-wrap svg path {
  fill: #2661a2;
}
.video-wrap .hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
}
.video-wrap .video-control-btn {
  background-image: url("/img/guest/playbtn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
  position: absolute;
  top: 40%;
  right: 45%;
  transition: all 100ms;
}
@media (max-width: 767px) {
  .video-wrap .video-control-btn {
    right: 38%;
    top: 32%;
    padding: 26px;
  }
}
.video-wrap .video-control-btn:hover {
  transform: scale(1.1);
}
.video-wrap .video-control-btn:active {
  transform: scale(0.9);
}
.video-wrap .video-control-btn.video-pause-button {
  background-image: url("/img/guest/pausebtn.svg");
}
.video-wrap .video-control-btn.video-pause-button.visible {
  right: 20px;
  top: 20px;
}

.page-content .page-title {
  color: #2661a2;
  font-size: 35px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .page-content .page-title * {
    font-size: 22px;
  }
}
.page-content .page-content-floated-img {
  float: left;
  width: 200px;
  margin-right: 10px;
}
.page-content .page-content-floated-title,
.page-content .page-content-floated-text {
  color: #2661a2;
}
.page-content .page-content-floated-text {
  margin-top: 10px;
  font-style: italic;
  font-size: 18px;
  min-height: 200px;
}
.page-content .page-content-floated-text * {
  font-size: 18px;
}
.page-content .page-socials .page-socials-title {
  color: #0092d4;
}
.page-content .page-socials .page-socials-title * {
  font-family: "Dosis", sans-serif;
  font-size: 20px;
}
@media (max-width: 767px) {
  .page-content .page-socials .page-socials-title * {
    font-size: 16px;
  }
}
.page-content .page-socials .page-socials-buttons-list {
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
}
.page-content .page-socials .page-social-button {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .page-content .page-socials .page-social-button {
    padding: 10px;
    background-color: #339eb7;
    border-color: #339eb7;
  }
}
.page-content .page-socials .page-social-button span {
  font-family: "Dosis", sans-serif;
  font-size: 22px;
}
@media (max-width: 767px) {
  .page-content .page-socials .page-social-button span {
    font-size: 18px;
  }
}
.page-content .page-socials .page-social-button .page-social-button-icon svg {
  margin-right: 5px;
  height: 22px;
}
.page-content .video-section {
  margin-bottom: 15px;
}

.store-logo-carousel .owl-item {
  min-height: 130px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .store-logo-carousel .titlebar-wrap {
    margin-right: 0;
  }
  .store-logo-carousel .titlebar-wrap .titlebar-link {
    display: none;
  }
  .store-logo-carousel .owl-carousel {
    width: 100%;
  }
}

.search-results {
  position: absolute;
  top: 185px;
  margin: 0 auto;
  width: 608px;
  left: 0;
  right: 0;
  z-index: 9;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  background-color: white;
  text-align: left;
  opacity: 0;
  transition: all 200ms;
  visibility: hidden;
  transform-origin: top;
}
@media (max-width: 767px) {
  .search-results {
    width: 100%;
  }
}
.search-results.opened {
  opacity: 1;
  visibility: visible;
}
.search-results .search-results-title {
  display: flex;
  justify-content: space-between;
  background-color: white;
  padding: 10px 40px;
  color: #2661a2;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.search-results .search-results-title * {
  font-size: 20px;
  margin-bottom: 0;
}
.search-results .search-results-title .close {
  background-color: transparent;
}
.search-results .search-results-title .close span {
  font-size: 44px;
  color: #0092d4;
  line-height: 0;
  display: inline-block;
  transform: translateY(10px);
}
.search-results .search-results-featured .search-results-featured-content {
  padding: 20px 40px;
  text-align: left;
}
.search-results .search-results-featured .search-results-featured-content h3 {
  margin-bottom: 15px;
}
.search-results .search-results-featured .search-results-featured-content .fa-arrow-right {
  float: right;
  width: 15px;
  transition: all 200ms;
}
.search-results .search-results-featured .search-results-featured-img {
  height: 100%;
  overflow: hidden;
}
.search-results .search-results-featured .search-results-featured-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 200ms;
}
.search-results .search-results-featured:hover {
  background-color: #339eb7 !important;
}
.search-results .search-results-featured:hover .fa-arrow-right {
  transform: translateX(5px);
}
.search-results .search-results-featured:hover .search-results-featured-img img {
  transform: scale(1.1);
}
.search-results .search-results-list {
  margin-bottom: 0;
}
.search-results .search-results-list li a {
  background-color: white;
  padding: 20px 40px;
  color: #2661a2;
  font-family: "Dosis", sans-serif;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  display: inline-block;
  width: 100%;
}
.search-results .search-results-list li a:hover {
  background-color: #e5f4fb;
}
.search-results .search-results-list li:last-of-type a {
  border-bottom: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.shops .shop-featured .shop-featured-content {
  padding: 20px 40px;
  text-align: left;
}
@media (max-width: 767px) {
  .shops .shop-featured .shop-featured-content {
    padding: 10px 15px;
  }
}
.shops .shop-featured .shop-featured-content h3 {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .shops .shop-featured .shop-featured-content h3 {
    font-size: 18px;
  }
}
.shops .shop-featured .shop-featured-content .fa-arrow-right {
  float: right;
  width: 15px;
  transition: all 200ms;
}
.shops .shop-featured .shop-featured-img {
  height: 100%;
  overflow: hidden;
}
.shops .shop-featured .shop-featured-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 200ms;
}
@media (max-width: 575px) {
  .shops .shop-featured .shop-featured-img img {
    height: 40vw;
  }
}
.shops .shop-featured:hover {
  background-color: #339eb7 !important;
}
.shops .shop-featured:hover .fa-arrow-right {
  transform: translateX(5px);
}
.shops .shop-featured:hover .shop-featured-img img {
  transform: scale(1.1);
}
.shops.shops-category .shop-list {
  grid-template-columns: 1fr;
  grid-template-areas: ".";
  gap: 11px 20px;
  margin-top: 10px;
}
.shops.shops-category .shop-list .shop-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.shops.shops-category .shop-list .shop-item:first-of-type {
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.shops.shops-category .shop-list .shop-item:last-of-type {
  border-bottom: none;
}

.shop-list {
  margin-top: 20px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px 20px;
  grid-template-areas: ". .";
}
@media (max-width: 767px) {
  .shop-list {
    gap: 10px;
  }
}
.shop-list.category-list {
  grid-template-columns: 1fr;
  grid-template-areas: ".";
  gap: 11px 20px;
}
.shop-list.category-list .shop-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.shop-list.category-list .shop-item:last-of-type {
  border-bottom: none;
}
.shop-list li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  background-color: #e5f4fb;
  font-family: "Dosis", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #2661a2;
}
.shop-list li a h2,
.shop-list li a h3,
.shop-list li a h4 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .shop-list li a h2,
  .shop-list li a h3,
  .shop-list li a h4 {
    font-size: 18px;
  }
}
.shop-list li a p {
  color: #000;
  text-decoration: underline;
  margin-bottom: 0;
  margin-top: 3px;
}
@media (max-width: 767px) {
  .shop-list li a p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .shop-list li a {
    padding: 5px;
    font-size: 18px;
  }
}
.shop-list li a:hover {
  background-color: #e5f4fb;
}

.mobile-adbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  z-index: 8;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 0 10px;
  border-top: 4px solid #2661a2;
  display: none;
}
@media (max-width: 767px) {
  .mobile-adbar {
    display: flex;
  }
}
.mobile-adbar .ad {
  height: 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .mobile-adbar .ad {
    margin: 7px 0;
  }
}
.mobile-adbar::before {
  position: absolute;
  top: -4px;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: white;
  content: "";
}

.mobile-adbar__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -33px;
  right: 10px;
  width: 40px;
  height: 30px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  border-left: 1px solid white;
  background: #2661a2;
  color: white;
  font-size: 30px;
  z-index: 2;
  cursor: pointer;
}
.mobile-adbar__toggle svg {
  height: 20px;
  transform: scaleY(-1);
  transition: transform 350ms ease;
}
.mobile-adbar__toggle svg path {
  fill: white;
}
.mobile-adbar__toggle.is-hidden svg {
  transform: scaleY(1);
}

@media (max-width: 767px) {
  .contact-details .titlebar-wrap {
    margin-right: 0;
  }
}
.contact-details .contact-details-item {
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-top: 15px;
}
.contact-details .contact-details-item .contact-details-item-icon svg path {
  fill: #2661a2;
  transition: all 200ms;
}
.contact-details .contact-details-item:hover .contact-details-item-text a {
  color: #339eb7;
}
.contact-details .contact-details-item:hover .contact-details-item-icon svg path {
  fill: #339eb7;
}
.contact-details .contact-details-item .contact-details-item-text {
  margin-left: 10px;
}
.contact-details .contact-details-item .contact-details-item-text p {
  margin-bottom: 0;
}
.contact-details .contact-details-item .contact-details-item-text a {
  color: #2661a2;
  text-decoration: underline;
}
.contact-details .contact-details-item:nth-last-child(1) {
  border-bottom: 0;
}

.latest-news .titlebar-wrap {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .latest-news .toggle-links-wrap {
    margin-right: -42px;
    margin-left: -42px;
  }
}

.pagination {
  margin: 0;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media only screen and (max-width: 599px) {
  .pagination {
    margin: 16px 0;
  }
}
.pagination ul {
  margin: 0 auto;
}
@media only screen and (max-width: 599px) {
  .pagination li {
    display: flex;
    align-items: center;
  }
}
.pagination svg path {
  fill: #2661a2;
}

.hexagon {
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 0 16px 16px;
  font-family: Dosis, sans-serif;
  color: #2661a2;
  font-size: 24px;
  font-weight: 500;
  background-image: url("/img/hexagon.svg");
  background-size: 0%;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 200ms;
  transform-origin: center;
}
@media only screen and (max-width: 599px) {
  .hexagon {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 17px;
  }
}
.hexagon.active, .hexagon:hover {
  background-size: 100%;
  color: #339eb7;
}

.toggle-links-wrap {
  overflow-x: hidden;
  height: 75px;
}
.toggle-links {
  display: flex;
  width: 100%;
  background-color: #e5f4fb;
  border-bottom: 5px solid #339eb7;
}
@media (max-width: 767px) {
  .toggle-links {
    width: 100%;
  }
}
.toggle-links .toggle-item {
  width: 50%;
  display: grid;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .toggle-links .toggle-item .toggle-link-left:hover,
  .toggle-links .toggle-item .toggle-link-right:hover {
    background-color: inherit;
  }
}
.toggle-links .toggle-item .toggle-link {
  background-color: #e5f4fb;
  color: #2661a2;
  padding: 15px;
  text-align: center;
  font-family: "Dosis", sans-serif;
  font-size: 25px;
  font-weight: 500;
  border-bottom: 5px solid #339eb7;
}
.toggle-links .toggle-item .toggle-link-left,
.toggle-links .toggle-item .toggle-link-right {
  padding: 12px;
  background-color: #e5f4fb;
}
@media (max-width: 767px) {
  .toggle-links .toggle-item .toggle-link-left,
  .toggle-links .toggle-item .toggle-link-right {
    font-size: 17px;
    padding: 10px 0;
    font-family: "Dosis", sans-serif;
  }
}
.toggle-links .toggle-item:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(100% + 10px);
  height: 102%;
  background-color: #339eb7;
  transition: all 200ms;
}
@media (max-width: 767px) {
  .toggle-links .toggle-item:before {
    display: none;
  }
}
.toggle-links .toggle-item:first-of-type:before {
  left: -30px;
  transform: skewX(30deg) translateX(-100%);
}
.toggle-links .toggle-item:last-of-type:before {
  right: -30px;
  transform: skewX(30deg) translateX(100%);
}
.toggle-links .toggle-item span {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .toggle-links .toggle-item.active > button {
    background-color: #339eb7;
  }
}
.toggle-links .toggle-item.active span {
  color: white;
}
.toggle-links .toggle-item.active:before {
  transform: skewX(30deg) translateX(0);
}
.toggle-links .toggle-item.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -22px;
  width: 75px;
  height: 22px;
  background-image: url("/img/guest/header-nav-hover-icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .toggle-links .toggle-item.active:after {
    width: 40px;
    bottom: -18px;
  }
}

@media (max-width: 767px) {
  .toggle-content-wrap {
    width: 100%;
  }
}

.toggle-content-left,
.toggle-content-right {
  display: none;
}
.toggle-content-left.active,
.toggle-content-right.active {
  display: block;
}

section.store-list-item,
a.store-list-item {
  display: flex;
  overflow: hidden;
  margin: 1.5rem 0;
}
@media only screen and (max-width: 599px) {
  section.store-list-item,
  a.store-list-item {
    position: relative;
    align-items: center;
    margin-bottom: 3rem !important;
    overflow: visible;
  }
}
section.store-list-item a,
a.store-list-item a {
  width: 100%;
  display: flex;
}
@media (max-width: 767px) {
  section.store-list-item,
  a.store-list-item {
    margin: 20px 0;
  }
}
@media (min-width: 1200px) {
  section.store-list-item,
  a.store-list-item {
    align-items: center;
  }
}
section.store-list-item.bg-tertiary h2,
section.store-list-item.bg-tertiary h3,
section.store-list-item.bg-tertiary h4,
section.store-list-item.bg-tertiary h5,
a.store-list-item.bg-tertiary h2,
a.store-list-item.bg-tertiary h3,
a.store-list-item.bg-tertiary h4,
a.store-list-item.bg-tertiary h5 {
  color: #2661a2;
}
section.store-list-item .store-list-content,
a.store-list-item .store-list-content {
  padding: 30px;
  width: 50%;
}
@media only screen and (max-width: 599px) {
  section.store-list-item .store-list-content,
  a.store-list-item .store-list-content {
    width: 60%;
  }
}
section.store-list-item .store-list-content p,
a.store-list-item .store-list-content p {
  margin-top: 15px;
  font-weight: 200;
}
@media only screen and (max-width: 599px) {
  section.store-list-item .store-list-content p,
  a.store-list-item .store-list-content p {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  section.store-list-item .store-list-content,
  a.store-list-item .store-list-content {
    padding: 20px;
  }
  section.store-list-item .store-list-content h2,
  section.store-list-item .store-list-content h3,
  section.store-list-item .store-list-content h4,
  section.store-list-item .store-list-content h5,
  a.store-list-item .store-list-content h2,
  a.store-list-item .store-list-content h3,
  a.store-list-item .store-list-content h4,
  a.store-list-item .store-list-content h5 {
    font-size: 18px;
  }
}
section.store-list-item .store-list-img,
a.store-list-item .store-list-img {
  position: relative;
  width: 25%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 599px) {
  section.store-list-item .store-list-img,
  a.store-list-item .store-list-img {
    top: 0;
    right: 0;
    height: 100%;
    width: 40%;
    background: white;
    z-index: 1;
  }
}
section.store-list-item.no-image .store-list-content,
a.store-list-item.no-image .store-list-content {
  width: 100%;
}
section.store-list-item::after,
a.store-list-item::after {
  display: none;
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #EEEEEE;
  content: "";
}
@media only screen and (max-width: 599px) {
  section.store-list-item::after,
  a.store-list-item::after {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  section.store-list-item:nth-last-child(1),
  a.store-list-item:nth-last-child(1) {
    margin: 1.5rem 0 !important;
  }
}
@media only screen and (max-width: 599px) {
  section.store-list-item:nth-last-child(1)::after,
  a.store-list-item:nth-last-child(1)::after {
    display: none;
  }
}
section.store-list-item:not(.bg-tertiary)::before,
a.store-list-item:not(.bg-tertiary)::before {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 41%;
  height: 100%;
  margin: 0 0 0 auto;
  background: white;
  content: "";
}
@media only screen and (max-width: 599px) {
  section.store-list-item:not(.bg-tertiary)::before,
  a.store-list-item:not(.bg-tertiary)::before {
    display: block;
  }
}

@media (max-width: 767px) {
  .opening-hours .titlebar-wrap {
    margin-right: 0;
  }
}
.opening-hours .opening-hours-content-item-time {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}
.opening-hours .opening-hours-content-item-time span:last-of-type {
  float: right;
}
.opening-hours .opening-hours-content-item-time p {
  margin-bottom: 0;
}

.links-sidebar {
  margin: 1.5rem 0;
}
@media only screen and (max-width: 599px) {
  .links-sidebar {
    margin: 1.5rem 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .links-sidebar .links-list {
    margin-bottom: 0;
  }
}
.links-sidebar li {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
  .links-sidebar li {
    margin-top: 10px;
    padding: 0 12px 0 0;
  }
}
.links-sidebar li a.links-list-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid #2661a2;
  padding: 18px;
  color: #2661a2;
}
@media only screen and (max-width: 599px) {
  .links-sidebar li a.links-list-link {
    margin-bottom: 10px;
    padding: 5px 18px;
    border-left: 0;
  }
}
.links-sidebar li a.links-list-link span {
  font-size: 25px;
  font-weight: 500;
  font-family: Dosis, sans-serif;
}
@media only screen and (max-width: 599px) {
  .links-sidebar li a.links-list-link span {
    font-size: 20px;
  }
}
.links-sidebar li a.links-list-link:hover .fa-arrow-right-long {
  transform: translateX(10px);
}
.links-sidebar li a.links-list-link:hover .fa-arrow-right-long path {
  fill: #339eb7;
}
.links-sidebar li a.links-list-link p {
  margin-bottom: 0;
}
@media only screen and (max-width: 599px) {
  .links-sidebar li a.links-list-link p {
    display: none;
  }
}

.agenda-detail .agenda-detail-intro a {
  font-weight: bold;
  color: #2661a2;
}
.agenda-detail .agenda-detail-items .agenda-detail-item {
  margin-bottom: 25px;
}
.agenda-detail .agenda-detail-items .agenda-detail-item h3 {
  font-size: 20px;
  color: #2661a2;
  margin-bottom: 3px;
}
.agenda-detail .agenda-detail-items .agenda-detail-item a {
  font-weight: bold;
  color: #2661a2;
}

.vacature-overzicht .vacature-overzicht-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
  margin-bottom: 25px;
}
.vacature-overzicht .vacature-overzicht-item:first-of-type {
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.vacature-overzicht .vacature-overzicht-item a {
  display: flex;
  align-items: center;
  position: relative;
}
.vacature-overzicht .vacature-overzicht-item a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url("/img/arrow-big-right-blue.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 35px;
  height: 15px;
  margin: auto;
  transition: all 200ms;
}
.vacature-overzicht .vacature-overzicht-item a .vacature-overzicht-item-logo {
  margin-right: 30px;
}
.vacature-overzicht .vacature-overzicht-item a .vacature-overzicht-item-content h2 {
  font-size: 26px;
  color: #2661a2;
  margin-bottom: 5px;
  transition: all 200ms;
}
@media (max-width: 1399px) {
  .vacature-overzicht .vacature-overzicht-item a .vacature-overzicht-item-content h2 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .vacature-overzicht .vacature-overzicht-item a .vacature-overzicht-item-content h2 {
    font-size: 20px;
    width: 80%;
  }
}
.vacature-overzicht .vacature-overzicht-item a .vacature-overzicht-item-content p {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}
.vacature-overzicht .vacature-overzicht-item a:hover:after {
  transform: translateX(5px);
}
.vacature-overzicht .vacature-overzicht-item a:hover .vacature-overzicht-item-content h2 {
  color: #339eb7;
}

.vacature-detail .vacature-detail-title {
  color: #2661a2;
  margin-bottom: 20px;
}
.vacature-detail .vacature-detail-time p {
  font-weight: bold;
  font-size: 18px;
}
.vacature-detail .vacature-detail-time p svg {
  margin-right: 10px;
}
.vacature-detail .vacature-detail-info {
  color: rgba(0, 0, 0, 0.5);
}
.vacature-detail .vacature-detail-content h3 {
  color: #2661a2;
  font-size: 20px;
  margin-bottom: 5px;
}
.vacature-detail .vacature-detail-content ul li:before {
  content: "-";
  margin-right: 10px;
}
.vacature-detail .vacature-detail-content a {
  font-weight: bold;
  color: #2661a2;
}

.vacature-detail-company .vacature-detail-company-content {
  display: flex;
  padding: 30px 0;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-logo {
  width: 200px;
  margin-right: 50px;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-logo img {
  width: 100%;
  height: auto;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info {
  width: 80%;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info h3 {
  font-size: 25px;
  color: #2661a2;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info .vacature-detail-company-info-list {
  margin: 10px 0;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info .vacature-detail-company-info-list li {
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  padding-top: 8px;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info .vacature-detail-company-info-list li svg {
  width: 16px;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info .vacature-detail-company-info-list li svg path {
  fill: #2661a2;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info .vacature-detail-company-info-list li span {
  padding-left: 15px;
  display: inline-flex;
}
.vacature-detail-company .vacature-detail-company-content .vacature-detail-company-info .vacature-detail-company-info-list li a {
  color: #2661a2;
}

.detail-title {
  color: #2661a2;
  margin-bottom: 25px;
}

.detail-info {
  color: rgb(169, 169, 169);
}
.detail-info li {
  margin-right: 1rem !important;
}

.nieuws-detail .nieuws-detail-content-img {
  width: 100%;
}
.nieuws-detail .nieuws-detail-content-img img {
  width: 100%;
  height: auto;
}
.nieuws-detail .nieuws-detail-content-img .img-caption {
  margin: 20px 0;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
}
.nieuws-detail .nieuws-detail-content-img .img-caption .caption-place {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .nieuws-detail .nieuws-detail-content-img .img-caption {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.nieuws-detail .nieuws-detail-content h3 {
  font-size: 20px;
  color: #2661a2;
  margin-bottom: 5px;
}
.nieuws-detail .nieuws-detail-content p,
.nieuws-detail .nieuws-detail-content ul li,
.nieuws-detail .nieuws-detail-content ol li {
  font-weight: 400;
}
.nieuws-detail .nieuws-detail-content a {
  font-weight: bold;
  color: #0092d4;
}
.nieuws-detail .nieuws-detail-share {
  display: flex;
  margin-top: 20px;
  color: #339eb7;
}
.nieuws-detail .nieuws-detail-share p {
  font-family: "Dosis", sans-serif;
  margin-right: 10px;
}
.nieuws-detail .nieuws-detail-share a svg {
  height: 20px;
  transition: all 200ms;
}
.nieuws-detail .nieuws-detail-share a:hover svg {
  transform: scale(1.3);
}

section.poll .poll-inner {
  padding: 20px;
}
@media only screen and (max-width: 599px) {
  section.poll .poll-inner {
    padding: 20px 20px 0;
  }
}
section.poll .poll-inner .poll-question {
  color: #2661a2;
}
section.poll .poll-inner .answer-label {
  width: 100%;
  max-width: 500px;
}
section.poll .poll-inner .result-answer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
section.poll .poll-inner .poll-result-progress {
  width: 100%;
}
section.poll .poll-inner .poll-answers,
section.poll .poll-inner .poll-results ul {
  padding: 0;
  list-style: none;
  transition: all 200ms;
  z-index: -1;
}
section.poll .poll-inner .poll-answers li:not(:nth-last-child(1)),
section.poll .poll-inner .poll-results ul li:not(:nth-last-child(1)) {
  margin-bottom: 20px;
}
section.poll .poll-inner .poll-results {
  display: none;
}
section.poll .poll-inner .poll-results ul {
  padding-top: 15px;
}
section.poll .poll-inner .poll-btn {
  transition: all 200ms;
  align-items: center;
  background-color: #2661a2;
  color: #fff;
  display: flex;
  font-family: Dosis, sans-serif;
  font-weight: 500;
  height: 100%;
  padding: 12px 35px 12px 20px;
  position: relative;
}
section.poll .poll-inner .poll-btn:after {
  background-image: url("/img/guest/titlebar-right-arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
}
section.poll .poll-inner .poll-answer-result-label.good {
  color: green;
}
section.poll .poll-inner .poll-answer-result-label.wrong {
  color: red;
}

.progress-bar {
  background-color: #2661a2;
}

.collection-overview {
  position: relative;
  overflow: hidden;
}
.collection-overview:before {
  content: "";
  background: #339eb7;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.5;
  transition: all 200ms;
  z-index: 1;
}
.collection-overview img {
  transition: all 200ms;
}
.collection-overview:hover img {
  transform: scale(1.2);
}
.collection-overview .collection-overview-inner {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  left: 0;
  right: 0;
  color: white;
}
.collection-overview .collection-overview-inner p {
  margin-bottom: 0;
}

.is-mobile {
  overflow: hidden;
}

.usps {
  text-align: left;
}
.usps .fa-circle-check {
  font-size: 40px;
}

.steps {
  max-width: 1070px;
  margin: auto;
  overflow: hidden;
}
.steps img {
  max-width: 80px;
  margin: 25px 0;
  display: inline;
}
.steps .step .desc {
  max-width: 230px;
  margin: auto;
}

.target {
  padding: 0 13px;
}
.target .advertise__intro {
  padding: 1rem 0 3rem;
}
.target .container.has-border-bottom {
  padding-bottom: 8rem;
  border-bottom: 1px solid #EEEEEE;
}
@media only screen and (max-width: 768px) {
  .target .container.has-border-bottom {
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width: 769px) {
  .target + .target {
    margin-top: 5rem;
  }
}

.advertise-page p,
.advertise-page .cms-output {
  font-weight: 400;
}

@media only screen and (max-width: 992px) {
  .advertise .banner + .intro {
    margin-top: 100px;
  }
}

.advertise .banner {
  padding: 25px;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.advertise .payoff {
  margin-top: 100px;
}

.advertise .anchors .btn-green {
  display: inline-block;
  background-color: #339eb7;
  width: 90%;
  color: white;
  padding: 12px 10px;
  font-size: 20px;
  font-family: "Dosis", sans-serif;
}

.advertise__intro {
  max-width: 1070px;
  margin: auto;
}
@media only screen and (min-width: 992px) {
  .advertise__intro {
    padding: 3rem 0;
  }
}
.advertise__intro p {
  margin-bottom: 0;
}

.advertise-banner__form input[type=number] {
  padding: 6px 12px;
  border: 1px solid #ccc;
}
.advertise-banner__form .form-checkbox {
  display: flex;
  position: relative;
}
.advertise-banner__form .form-checkbox label {
  position: relative;
  display: flex;
  align-items: center;
}
.advertise-banner__form .form-checkbox label::before {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: white;
  content: "";
}
.advertise-banner__form .form-checkbox label::after {
  display: block;
  position: absolute;
  left: 6px;
  top: 4px;
  width: 7px;
  height: 14px;
  border: solid #3490dc;
  border-width: 0 3px 3px 0;
  transform: rotate(-90deg);
  opacity: 0;
  transition: all 350ms ease;
  content: "";
}
.advertise-banner__form .form-checkbox input[type=radio] {
  position: absolute;
  left: -999999px;
  opacity: 0;
}
.advertise-banner__form .form-checkbox input[type=radio]:checked + label::after {
  opacity: 1;
  transform: rotate(45deg);
}
.advertise-banner__form .total {
  color: #339eb7;
  font-family: "Dosis", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.advertise-banner__image:not(.is-active) {
  display: none;
}

.has-pie-chart + .container {
  overflow: initial;
}

.comparison {
  padding: 0 13px;
}
.comparison .container {
  padding-bottom: 8rem;
  border-bottom: 1px solid #EEEEEE;
}
@media only screen and (max-width: 768px) {
  .comparison .container {
    padding-bottom: 4rem;
  }
}
.comparison .advertise__intro {
  padding: 1rem 0 0;
}
@media only screen and (max-width: 768px) {
  .comparison .table-container {
    overflow-x: auto;
  }
}
.comparison table {
  width: 100%;
  margin-top: 4.5rem;
  border: 1px solid #f8fafc;
}
@media only screen and (max-width: 768px) {
  .comparison table {
    width: 1000px;
  }
}
.comparison table th {
  background: #0092D4;
  color: #fff;
  padding: 20px;
}
.comparison table th:nth-child(1) {
  width: 40%;
  text-align: left;
}
.comparison table th:not(:nth-child(1)) {
  width: 20%;
  border-left: 1px solid #339eb7;
}
.comparison table th:not(:nth-child(1)) span {
  display: block;
  width: 100%;
  margin-bottom: 0.125rem;
  font-size: 16px;
  font-weight: 400;
}
.comparison table th:not(:nth-child(1)) p {
  width: 100%;
  font-family: "Dosis", sans-serif;
  font-size: 25px;
  line-height: 30px;
  font-weight: 500;
}
.comparison table th:not(:nth-child(1)) sub {
  margin-top: -5px;
  font-size: 14px;
}
.comparison table th:not(:nth-child(1)) .btn {
  margin-top: 1rem;
}
.comparison table tr td {
  padding: 15px 25px;
  border: 1px solid rgb(238, 238, 238);
  line-height: 1.1rem;
}
.comparison table tr td:nth-child(1) {
  width: 40%;
  background: rgba(238, 238, 238, 0.5);
  text-align: left;
}
.comparison table tr td:not(:nth-child(1)) {
  width: 20%;
  padding: 20px 10px;
}

.vacancies {
  padding: 0 13px;
}
.vacancies .container {
  padding: 8rem 0;
  border-bottom: 1px solid #EEEEEE;
}
@media only screen and (max-width: 768px) {
  .vacancies .container {
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 769px) {
  .vacancies .cms-output {
    max-width: 410px;
  }
}
.vacancies .vacancy {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  padding: 40px;
  background: rgb(238, 238, 238);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .vacancies .vacancy {
    margin-top: 1rem;
    padding: 25px;
  }
}
.vacancies .vacancy span {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  font-weight: 500;
}
.vacancies .vacancy .price {
  width: 100%;
  line-height: 3.5rem;
  font-size: 50px;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  color: #2661a2;
}
@media only screen and (max-width: 768px) {
  .vacancies .vacancy .price {
    font-size: 30px;
    line-height: 2.5rem;
  }
}
.vacancies .vacancy .btn {
  margin-top: 25px;
}

.advertorials {
  padding: 0 26px;
}
.advertorials .container {
  padding: 8rem 0;
  border-bottom: 1px solid #EEEEEE;
}
@media only screen and (max-width: 768px) {
  .advertorials .container {
    padding: 4rem 0;
  }
}

.advertorial__grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .advertorial__grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 769px) {
  .advertorial-desc p {
    max-width: 380px;
  }
}

.advertorial-single {
  padding: 35px 30px;
  text-align: center;
  background: rgb(238, 238, 238);
}
@media only screen and (min-width: 769px) {
  .advertorial-single {
    margin-top: 25px;
  }
}
.advertorial-single .advertorial-single__price {
  width: 100%;
  padding: 0 0 20px;
  line-height: 3.5rem;
  font-size: 50px;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  color: #2661a2;
}
@media only screen and (max-width: 768px) {
  .advertorial-single .advertorial-single__price {
    padding: 0 0 10px;
    font-size: 30px;
    line-height: 2.5rem;
  }
}
.advertorial-single .advertorial-single__content .title {
  font-size: 19px;
  font-weight: 600;
}
.advertorial-single .btn {
  margin-top: 20px;
}

.advertise-testimonials {
  padding: 0 26px;
}
.advertise-testimonials h2 {
  text-align: center;
}
.advertise-testimonials .container {
  padding: 8rem 0;
  border-bottom: 1px solid #EEEEEE;
}
@media only screen and (max-width: 768px) {
  .advertise-testimonials .container {
    padding: 4rem 0;
  }
}

.advertise-testimonials__grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .advertise-testimonials__grid {
    grid-template-columns: 1fr;
    grid-gap: 75px;
  }
}

.advertise-testimonial {
  position: relative;
  padding: 40px 40px 60px;
  background: #2661a2;
  color: #fff;
  text-align: center;
}

.advertise-testimonial__quotes {
  position: absolute;
  top: -15px;
  left: 20px;
  width: auto;
  height: 40px;
}

.advertise-testimonial__photo {
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.advertise-testimonial__name {
  margin: 35px 0 5px;
  font-family: "Dosis", sans-serif;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
}

.advertise-testimonial__content {
  margin-top: 40px;
  font-style: italic;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .advertise-testimonial__content {
    margin-top: 20px;
  }
}

.advertise-carousel {
  text-align: center;
}
.advertise-carousel .container {
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .advertise-carousel .container {
    padding: 4rem 0;
  }
}
.advertise-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.advertise-carousel .item img {
  display: block;
  width: 150px;
  height: auto;
  margin: auto;
}
.advertise-carousel .owl-dots {
  margin-top: 20px !important;
}

.advertise-carousel__items {
  margin-top: 50px;
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.thumbnail__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__caption {
  display: none;
}

html,
body {
  position: relative;
}

body {
  padding-top: 100px;
}
@media (max-width: 767px) {
  body {
    padding-top: 42px;
  }
}

p {
  font-weight: 400;
}

.owl-carousel {
  position: relative;
}
@media (min-width: 768px) {
  .owl-carousel {
    display: block;
  }
}
.owl-nav {
  position: absolute;
  top: 10%;
  width: 100%;
}
.owl-nav .owl-prev {
  left: -27px;
  position: absolute;
  margin: 0 !important;
}
.owl-nav .owl-next {
  right: 0;
  position: absolute;
  margin: 0 !important;
}
.owl-nav button {
  overflow: hidden;
}
.owl-nav button span {
  background: #339eb7;
  color: white;
  font-size: 38px;
  padding: 0 8px;
  line-height: 0.7;
  border-radius: 5px;
}

@media (min-width: 768px) {
  #mobile {
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  #desktop {
    display: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    pointer-events: none;
  }
}
img,
video {
  max-width: 100%;
  height: auto;
}

a {
  transition: all 200ms;
}

.container {
  overflow: hidden;
}
.container > .row {
  --bs-gutter-x: 4.25rem;
  --bs-gutter-y: 4.25rem;
}
@media (max-width: 767px) {
  .container > .row {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid white;
  background-clip: unset;
  opacity: 1;
}
.carousel-indicators [data-bs-target].active {
  background-color: white;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #0092d4;
  background-clip: unset;
  opacity: 1;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #0092d4;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 20px;
  height: 20px;
}

section {
  margin: 3rem 0;
}
@media (min-width: 769px) {
  section {
    height: 100%;
  }
}
@media (max-width: 768px) {
  section {
    margin: 1.5rem 0;
  }
}

.ad {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 280px;
  margin: 1.5rem 0;
  background-color: #eee;
}
.ad img {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.titlebar-wrap {
  display: flex;
  justify-content: space-between;
  background-color: #e5f4fb;
  position: relative;
}
@media only screen and (max-width: 599px) {
  .titlebar-wrap {
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .titlebar-wrap {
    margin-right: -42px;
  }
}
.titlebar-wrap:not(.straight-right-border):after {
  height: 100%;
  width: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  background-image: url("/img/guest/titlebar-right-arrow.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .titlebar-wrap:not(.straight-right-border):after {
    content: unset;
  }
}
.titlebar-wrap .titlebar {
  color: #2661a2;
  padding: 12px 25px;
}
@media (max-width: 1199px) {
  .titlebar-wrap .titlebar {
    padding: 12px 15px;
  }
}
@media (max-width: 767px) {
  .titlebar-wrap .titlebar {
    padding: 12px 25px;
  }
}
.titlebar-wrap .titlebar h2,
.titlebar-wrap .titlebar h3,
.titlebar-wrap .titlebar h4,
.titlebar-wrap .titlebar h5 {
  font-weight: bold;
  font-size: 20px;
}
.titlebar-wrap .titlebar-link {
  color: white;
  height: 100%;
  padding: 12px 20px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #2661a2;
  padding-right: 35px;
  font-family: "Dosis", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 599px) {
  .titlebar-wrap .titlebar-link {
    height: auto;
  }
}
@media (max-width: 1199px) {
  .titlebar-wrap .titlebar-link {
    padding: 12px 22px 12px 20px;
  }
}
@media (max-width: 767px) {
  .titlebar-wrap .titlebar-link {
    padding-right: 20px;
  }
}
.titlebar-wrap .titlebar-link svg {
  margin-left: 10px;
}
.titlebar-wrap .titlebar-link svg path {
  fill: white;
}
.titlebar-wrap .titlebar-link .is-mobile {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .titlebar-wrap .titlebar-link .is-mobile {
    display: none;
  }
}
.titlebar-wrap .titlebar-link .is-desktop {
  display: none;
}
@media only screen and (min-width: 769px) {
  .titlebar-wrap .titlebar-link .is-desktop {
    display: flex;
  }
}
.titlebar-wrap .titlebar-link:hover {
  background-color: #339eb7;
  color: white;
}
.titlebar-wrap .titlebar-link:hover svg {
  transform: translateX(10px);
}

.fa-arrow-right-long path {
  fill: #2661a2;
}

@media only screen and (max-width: 599px) {
  .container .row > .col-md-4,
  .container .row > .col-lg-4 {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  #sidebar {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .remove-margin-top-on-mobile {
    margin-top: 0 !important;
  }
  .remove-margin-bottom-on-mobile {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  section.map .titlebar-wrap,
  section.facebook .titlebar-wrap {
    margin-right: 0;
    margin-bottom: 0 !important;
  }
}

.searchbar-input {
  border: 1px solid #0092d4;
  border-radius: 25px;
  background-color: #fff;
  padding: 10px 30px;
  border: none;
  margin: 0 auto;
  width: 50%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .searchbar-input {
    width: 100%;
    padding: 5px 20px;
    border: 1px solid #339eb7;
  }
}

.searchbar input {
  border: none;
  color: #0092d4;
  font-size: 18px;
  width: 100%;
}
@media (max-width: 767px) {
  .searchbar input {
    font-size: 14px;
  }
}
.searchbar input::-moz-placeholder {
  color: #0092d4;
  font-size: 18px;
}
.searchbar input::placeholder {
  color: #0092d4;
  font-size: 18px;
}
@media (max-width: 767px) {
  .searchbar input::-moz-placeholder {
    font-size: 14px;
  }
  .searchbar input::placeholder {
    font-size: 14px;
  }
}
.searchbar .search-icon {
  background-color: transparent;
}
.searchbar .search-icon svg {
  height: 22px;
}
@media only screen and (max-width: 599px) {
  .searchbar .search-icon svg {
    height: 16px;
  }
}
.searchbar .search-icon svg path {
  fill: #0092d4;
}

.page-intro h2 {
  color: #2661a2;
  margin-bottom: 20px;
}
.page-intro h3 {
  color: #0092d4;
  font-size: 20px;
}

#mobile {
  overflow: hidden;
}

.row :has(> .text-center > .pagination) {
  margin-top: 0;
}
.row :has(> .text-center > .pagination) .text-center {
  margin-top: -1.5rem;
}

@media (min-width: 1200px) {
  .row.anchors {
    margin-top: 50px;
  }
}
