CINXE.COM

Hoger onderwijs – Wikimedia Nederland

<!doctype html> <html lang="nl-NL" class="no-js"> <head> <meta charset="UTF-8"> <script type="text/javascript"> /* <![CDATA[ */ //---------------------------------------------------------- //------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS ------- //---------------------------------------------------------- if ( ! gform ) { document.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } ); window.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } ); var gform = { domLoaded: false, scriptsLoaded: false, initializeOnLoaded: function( fn ) { if ( gform.domLoaded && gform.scriptsLoaded ) { fn(); } else if( ! gform.domLoaded && gform.scriptsLoaded ) { window.addEventListener( 'DOMContentLoaded', fn ); } else { document.addEventListener( 'gform_main_scripts_loaded', fn ); } }, hooks: { action: {}, filter: {} }, addAction: function( action, callable, priority, tag ) { gform.addHook( 'action', action, callable, priority, tag ); }, addFilter: function( action, callable, priority, tag ) { gform.addHook( 'filter', action, callable, priority, tag ); }, doAction: function( action ) { gform.doHook( 'action', action, arguments ); }, applyFilters: function( action ) { return gform.doHook( 'filter', action, arguments ); }, removeAction: function( action, tag ) { gform.removeHook( 'action', action, tag ); }, removeFilter: function( action, priority, tag ) { gform.removeHook( 'filter', action, priority, tag ); }, addHook: function( hookType, action, callable, priority, tag ) { if ( undefined == gform.hooks[hookType][action] ) { gform.hooks[hookType][action] = []; } var hooks = gform.hooks[hookType][action]; if ( undefined == tag ) { tag = action + '_' + hooks.length; } if( priority == undefined ){ priority = 10; } gform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } ); }, doHook: function( hookType, action, args ) { // splice args from object into array and remove first index which is the hook name args = Array.prototype.slice.call(args, 1); if ( undefined != gform.hooks[hookType][action] ) { var hooks = gform.hooks[hookType][action], hook; //sort by priority hooks.sort(function(a,b){return a["priority"]-b["priority"]}); hooks.forEach( function( hookItem ) { hook = hookItem.callable; if(typeof hook != 'function') hook = window[hook]; if ( 'action' == hookType ) { hook.apply(null, args); } else { args[0] = hook.apply(null, args); } } ); } if ( 'filter'==hookType ) { return args[0]; } }, removeHook: function( hookType, action, priority, tag ) { if ( undefined != gform.hooks[hookType][action] ) { var hooks = gform.hooks[hookType][action]; hooks = hooks.filter( function(hook, index, arr) { var removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority); return !removeHook; } ); gform.hooks[hookType][action] = hooks; } } }; } /* ]]> */ </script> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" /><title>Hoger onderwijs &#8211; Wikimedia Nederland</title> <meta name='robots' content='max-image-preview:large' /> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <link rel="alternate" type="application/rss+xml" title="Wikimedia Nederland &raquo; feed" href="https://www.wikimedia.nl/feed/" /> <link rel="alternate" type="application/rss+xml" title="Wikimedia Nederland &raquo; reactiesfeed" href="https://www.wikimedia.nl/comments/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.wikimedia.nl\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/www.wikimedia.nl\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <link rel='stylesheet' id='db_samenwerking_css-css' href='https://www.wikimedia.nl/wp-content/plugins/db_samenwerking/css/samenwerking.css?ver=6.7.2' type='text/css' media='all' /> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.wikimedia.nl/wp-includes/css/dist/block-library/style.css?ver=6.7.2' type='text/css' media='all' /> <link rel='stylesheet' id='gravitycharts-style-css-css' href='https://www.wikimedia.nl/wp-content/plugins/gravitycharts/build/style.css?ver=1.0.3' type='text/css' media='all' /> <style id='safe-svg-svg-icon-style-inline-css' type='text/css'> .safe-svg-cover{text-align:center}.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%} </style> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='db_ext_blog_css-css' href='https://www.wikimedia.nl/wp-content/plugins/db_extended_blog/css/blog.css?ver=6.7.2' type='text/css' media='all' /> <link rel='stylesheet' id='salient-social-css' href='https://www.wikimedia.nl/wp-content/plugins/salient-social/css/style.css?ver=1.2' type='text/css' media='all' /> <style id='salient-social-inline-css' type='text/css'> .sharing-default-minimal .nectar-love.loved, body .nectar-social[data-color-override="override"].fixed > a:before, body .nectar-social[data-color-override="override"].fixed .nectar-social-inner a, .sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a:hover { background-color: #29aa6a; } .nectar-social.hover .nectar-love.loved, .nectar-social.hover > .nectar-love-button a:hover, .nectar-social[data-color-override="override"].hover > div a:hover, #single-below-header .nectar-social[data-color-override="override"].hover > div a:hover, .nectar-social[data-color-override="override"].hover .share-btn:hover, .sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a { border-color: #29aa6a; } #single-below-header .nectar-social.hover .nectar-love.loved i, #single-below-header .nectar-social.hover[data-color-override="override"] a:hover, #single-below-header .nectar-social.hover[data-color-override="override"] a:hover i, #single-below-header .nectar-social.hover .nectar-love-button a:hover i, .nectar-love:hover i, .hover .nectar-love:hover .total_loves, .nectar-love.loved i, .nectar-social.hover .nectar-love.loved .total_loves, .nectar-social.hover .share-btn:hover, .nectar-social[data-color-override="override"].hover .nectar-social-inner a:hover, .nectar-social[data-color-override="override"].hover > div:hover span, .sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a:not(:hover) i, .sharing-default-minimal .nectar-social[data-color-override="override"] .nectar-social-inner a:not(:hover) { color: #29aa6a; } </style> <link rel='stylesheet' id='widgetopts-styles-css' href='https://www.wikimedia.nl/wp-content/plugins/widget-options/assets/css/widget-options.css?ver=4.0.8' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/font-awesome-legacy.min.css?ver=4.7.1' type='text/css' media='all' /> <link rel='stylesheet' id='salient-grid-system-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/grid-system.css?ver=13.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='main-styles-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/style.css?ver=13.0.5' type='text/css' media='all' /> <style id='main-styles-inline-css' type='text/css'> @font-face{ font-family:'Open Sans'; src:url('https://www.wikimedia.nl/wp-content/themes/salient/css/fonts/OpenSans-Light.woff') format('woff'); font-weight:300; font-style:normal } @font-face{ font-family:'Open Sans'; src:url('https://www.wikimedia.nl/wp-content/themes/salient/css/fonts/OpenSans-Regular.woff') format('woff'); font-weight:400; font-style:normal } @font-face{ font-family:'Open Sans'; src:url('https://www.wikimedia.nl/wp-content/themes/salient/css/fonts/OpenSans-SemiBold.woff') format('woff'); font-weight:600; font-style:normal } @font-face{ font-family:'Open Sans'; src:url('https://www.wikimedia.nl/wp-content/themes/salient/css/fonts/OpenSans-Bold.woff') format('woff'); font-weight:700; font-style:normal } </style> <link rel='stylesheet' id='nectar-header-layout-centered-menu-under-logo-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/header/header-layout-centered-menu-under-logo.css?ver=13.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='nectar-header-secondary-nav-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/header/header-secondary-nav.css?ver=13.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='nectar-element-testimonial-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/elements/element-testimonial.css?ver=13.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='responsive-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/responsive.css?ver=13.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='skin-ascend-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/ascend.css?ver=13.0.5' type='text/css' media='all' /> <style id='skin-ascend-inline-css' type='text/css'> body a,label span,body [class^="icon-"].icon-default-style,.blog-recent[data-style*="classic_enhanced"] .post-meta a:hover i,.masonry.classic_enhanced .post .post-meta a:hover i,.post .post-header h2 a,.post .post-header a:hover,.post .post-header a:focus,#single-below-header a:hover,#single-below-header a:focus,.comment-list .pingback .comment-body > a:hover,[data-style="list_featured_first_row"] .meta-category a,[data-style="list_featured_first_row"] .meta-category a,.nectar-fancy-box[data-style="color_box_hover"][data-color="accent-color"] .icon-default-style,div[data-style="minimal"] .toggle:hover h3 a,div[data-style="minimal"] .toggle.open h3 a,#footer-outer #copyright li a i:hover,.ascend .comment-list .reply a,body.material .widget:not(.nectar_popular_posts_widget):not(.recent_posts_extra_widget) li a:hover,body.material #sidebar .widget:not(.nectar_popular_posts_widget):not(.recent_posts_extra_widget) li a:hover,body.material #footer-outer .widget:not(.nectar_popular_posts_widget):not(.recent_posts_extra_widget) li a:hover,#top nav .sf-menu .current_page_item > a .sf-sub-indicator i,#top nav .sf-menu .current_page_ancestor > a .sf-sub-indicator i,.sf-menu > .current_page_ancestor > a > .sf-sub-indicator i,.material .widget .tagcloud a,#single-below-header a:hover [class^="icon-"],.wpcf7-form .wpcf7-not-valid-tip,#header-outer .nectar-menu-label{color:#1e73be;}#header-outer #top nav > ul > .button_bordered > a:hover,#header-outer:not(.transparent) #social-in-menu a i:after,.sf-menu > li > a:hover > .sf-sub-indicator i,.sf-menu > li > a:active > .sf-sub-indicator i,.sf-menu > .sfHover > a > .sf-sub-indicator i,.sf-menu .megamenu > ul > li:hover > a,#header-outer nav > ul > .megamenu > ul > li > a:hover,#header-outer nav > ul > .megamenu > ul > .sfHover > a,#header-outer nav > ul > .megamenu > ul > li > a:focus,#top nav ul #nectar-user-account a:hover span,#top nav ul #search-btn a:hover span,#top nav ul .slide-out-widget-area-toggle a:hover span,body.material:not([data-header-color="custom"]) #header-outer:not([data-format="left-header"]) #top ul.cart_list a:hover,body.material #header-outer:not(.transparent) .cart-outer:hover .cart-menu-wrap .icon-salient-cart,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-item.has-ul > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-ancestor.has-ul > a,body #header-secondary-outer #social a:hover i,body #header-secondary-outer #social a:focus i,#footer-outer a:focus,#footer-outer a:hover,.recent-posts .post-header a:hover,.result a:hover,.post-area.standard-minimal .post .post-meta .date a,.post-area.standard-minimal .post .post-header h2 a:hover,.post-area.standard-minimal .post .more-link:hover span,.post-area.standard-minimal .post .more-link span:after,.post-area.standard-minimal .post .minimal-post-meta a:hover,.single .post .post-meta a:hover,.single .post .post-meta a:focus,.single #single-meta div a:hover i,.single #single-meta div:hover > a,.single #single-meta div:focus > a,.comment-list .comment-meta a:hover,.comment-list .comment-meta a:focus,.result .title a,.circle-border,.home .blog-recent:not([data-style="list_featured_first_row"]) .col .post-header a:hover,.home .blog-recent .col .post-header h3 a,.comment-author a:hover,.comment-author a:focus,.project-attrs li i,.nectar-milestone .number.accent-color,body #portfolio-nav a:hover i,span.accent-color,.portfolio-items .nectar-love:hover i,.portfolio-items .nectar-love.loved i,body .hovered .nectar-love i,body:not(.material) #search-outer #search #close a span:hover,.carousel-wrap[data-full-width="true"] .carousel-heading a:hover i,#search-outer .ui-widget-content li:hover *,#search-outer .ui-widget-content .ui-state-focus *,.portfolio-filters-inline .container ul li .active,.svg-icon-holder[data-color="accent-color"],.team-member .accent-color:hover,.blog-recent[data-style="minimal"] .col > span,.blog-recent[data-style="title_only"] .col:hover .post-header .title,body #pagination .page-numbers.prev:hover,body #pagination .page-numbers.next:hover,body #pagination a.page-numbers:hover,body #pagination a.page-numbers:focus,body[data-form-submit="see-through"] input[type=submit],body[data-form-submit="see-through"] button[type=submit],.nectar_icon_wrap[data-color="accent-color"] i,.nectar_team_member_close .inner:before,body:not([data-header-format="left-header"]) nav > ul > .megamenu > ul > li > ul > .has-ul > a:hover,body:not([data-header-format="left-header"]) nav > ul > .megamenu > ul > li > ul > .has-ul > a:focus,.masonry.material .masonry-blog-item .meta-category a,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="accent-color-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="accent-color-underline"].full-width-section a:hover,.material .comment-list .reply a:hover,.material .comment-list .reply a:focus,.related-posts[data-style="material"] .meta-category a,.material .widget li:not(.has-img) a:hover .post-title,.material #sidebar .widget li:not(.has-img) a:hover .post-title,.material .container-wrap #author-bio #author-info a:hover,.material #sidebar .widget ul[data-style="featured-image-left"] li a:hover .post-title,.material #sidebar .widget .tagcloud a,.single.material .post-area .content-inner > .post-tags a,.post-area.featured_img_left .meta-category a,.post-meta .icon-salient-heart-2.loved,body.material .nectar-button.see-through.accent-color[data-color-override="false"],div[data-style="minimal_small"] .toggle.accent-color > h3 a:hover,div[data-style="minimal_small"] .toggle.accent-color.open > h3 a,.testimonial_slider[data-rating-color="accent-color"] .star-rating .filled:before,.nectar_single_testimonial[data-color="accent-color"] p .open-quote,.nectar-quick-view-box .star-rating,.widget_search .search-form button[type=submit] .icon-salient-search,body.search-no-results .search-form button[type=submit] .icon-salient-search{color:#1e73be!important;}#header-outer #mobile-menu ul li[class*="current"] > a,#header-outer #mobile-menu ul li a:hover,#header-outer #mobile-menu ul li a:focus,#header-outer #mobile-menu ul li a:hover .sf-sub-indicator i,#header-outer #mobile-menu ul li a:focus .sf-sub-indicator i{color:#1e73be;}[data-style="list_featured_first_row"] .meta-category a:before,.tabbed > ul li .active-tab,.tabbed > ul li .active-tab:hover,.wpb_row .nectar-post-grid-filters[data-active-color="accent-color"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] blockquote.is-selected p,.nectar_video_lightbox.nectar-button[data-color="default-accent-color"],.nectar_video_lightbox.nectar-button[data-color="transparent-accent-color"]:hover,.nectar-cta[data-color="accent-color"]:not([data-style="material"]) .link_wrap,.flex-direction-nav a,.carousel-prev:hover,.carousel-next:hover,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="accent-color"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="accent-color"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="accent-color"] .visualized-total span,[class*=" icon-"],.toggle.open h3 a,div[data-style="minimal"] .toggle.open h3 i:after,div[data-style="minimal"] .toggle:hover h3 i:after,div[data-style="minimal"] .toggle.open h3 i:before,div[data-style="minimal"] .toggle:hover h3 i:before,div[data-style="minimal_small"] .toggle.accent-color > h3:after,.main-content .widget_calendar caption,#footer-outer .widget_calendar caption,.post .more-link span:hover,.post.format-quote .post-content .quote-inner,.post.format-link .post-content .link-inner,.nectar-post-grid-wrap[data-load-more-color="accent-color"] .load-more:hover,.format-status .post-content .status-inner,.nectar-post-grid-item.nectar-new-item .inner:before,input[type=submit]:hover,input[type="button"]:hover,body[data-form-submit="regular"] input[type=submit],body[data-form-submit="regular"] button[type=submit],body[data-form-submit="regular"] .container-wrap .span_12.light input[type=submit]:hover,body[data-form-submit="regular"] .container-wrap .span_12.light button[type=submit]:hover,#slide-out-widget-area,#slide-out-widget-area-bg.fullscreen,#slide-out-widget-area-bg.fullscreen-split,#slide-out-widget-area-bg.fullscreen-alt .bg-inner,body.material #slide-out-widget-area-bg.slide-out-from-right,.widget .material .widget .tagcloud a:before,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="accent-color"] .nectar-list-item-btn:hover,#header-outer[data-lhe="animated_underline"] .nectar-header-text-content a:after,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .nectar-notice,.woocommerce #review_form #respond .form-submit #submit,#header-outer .nectar-menu-label:before{background-color:#1e73be;}.orbit-wrapper .slider-nav .right,.orbit-wrapper .slider-nav .left,.progress li span,.nectar-progress-bar span,#footer-outer #footer-widgets .col .tagcloud a:hover,#sidebar .widget .tagcloud a:hover,#fp-nav.tooltip ul li .fp-tooltip .tooltip-inner,#pagination .next a:hover,#pagination .prev a:hover,.comment-list .reply a:hover,.comment-list .reply a:focus,.icon-normal,.bar_graph li span,.nectar-button[data-color-override="false"].regular-button,.nectar-button.tilt.accent-color,body .swiper-slide .button.transparent_2 .primary-color:hover,#footer-outer #footer-widgets .col input[type="submit"],.blog-recent .more-link span:hover,.post-tags a:hover,#to-top:hover,#to-top.dark:hover,body[data-button-style*="rounded"] #to-top:after,#pagination a.page-numbers:hover,#pagination span.page-numbers.current,.portfolio-items .col[data-default-color="true"] .work-item:not(.style-3) .work-info-bg,.portfolio-items .col[data-default-color="true"] .bottom-meta,.portfolio-items .col.nectar-new-item .inner-wrap:before,.portfolio-filters-inline[data-color-scheme="accent-color-underline"] a:after,.portfolio-filters a,.portfolio-filters #sort-portfolio,.project-attrs li span,.portfolio-filters,.portfolio-filters-inline[data-color-scheme="accent-color"],.bottom_controls #portfolio-nav .controls li a i:after,.bottom_controls #portfolio-nav ul:first-child li#all-items a:hover i,.single-portfolio .facebook-share a:hover,.single-portfolio .twitter-share a:hover,.single-portfolio .pinterest-share a:hover,.single-post .facebook-share a:hover,.single-post .twitter-share a:hover,.single-post .pinterest-share a:hover,.mejs-controls .mejs-time-rail .mejs-time-current,.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.post.quote .content-inner .quote-inner .whole-link,.masonry.classic_enhanced .post.quote.wide_tall .post-content a:hover .quote-inner,.masonry.classic_enhanced .post.link.wide_tall .post-content a:hover .link-inner,.iosSlider .prev_slide:hover,.iosSlider .next_slide:hover,#header-outer .widget_shopping_cart a.button,#header-outer a.cart-contents .cart-wrap span,#header-outer #mobile-cart-link .cart-wrap span,#top nav ul .slide-out-widget-area-toggle a:hover .lines,#top nav ul .slide-out-widget-area-toggle a:hover .lines:after,#top nav ul .slide-out-widget-area-toggle a:hover .lines:before,#top nav ul .slide-out-widget-area-toggle a:hover .lines-button:after,#header-outer .widget_shopping_cart a.button,body[data-header-format="left-header"] #header-outer[data-lhe="animated_underline"] #top nav ul li:not([class*="button_"]) > a span:after,#buddypress a.button:focus,.swiper-slide .button.solid_color a,.swiper-slide .button.solid_color_2 a,.select2-container .select2-choice:hover,.select2-dropdown-open .select2-choice,#top nav > ul > .button_solid_color > a:before,#header-outer.transparent #top nav > ul > .button_solid_color > a:before,.twentytwenty-handle,.twentytwenty-horizontal .twentytwenty-handle:before,.twentytwenty-horizontal .twentytwenty-handle:after,.twentytwenty-vertical .twentytwenty-handle:before,.twentytwenty-vertical .twentytwenty-handle:after,.masonry.classic_enhanced .posts-container article .meta-category a:hover,.blog-recent[data-style*="classic_enhanced"] .meta-category a:hover,.masonry.classic_enhanced .posts-container article .video-play-button,.masonry.material .masonry-blog-item .meta-category a:before,.material.masonry .masonry-blog-item .video-play-button,.masonry.material .quote-inner:before,.masonry.material .link-inner:before,.nectar-recent-posts-slider .container .strong span:before,#page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a:hover,#page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a:focus,.single .heading-title[data-header-style="default_minimal"] .meta-category a:hover,.single .heading-title[data-header-style="default_minimal"] .meta-category a:focus,.nectar-fancy-box:after,.divider-small-border[data-color="accent-color"],.divider-border[data-color="accent-color"],.nectar-animated-title[data-color="accent-color"] .nectar-animated-title-inner:after,#fp-nav:not(.light-controls).tooltip_alt ul li a span:after,#fp-nav.tooltip_alt ul li a span:after,.nectar-video-box[data-color="default-accent-color"] .nectar_video_lightbox,body .nectar-video-box[data-color="default-accent-color"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="default-accent-color"]:not([data-style="small"]) .play > .inner-wrap:before,.span_12.dark .owl-theme .owl-dots .owl-dot.active span,.span_12.dark .owl-theme .owl-dots .owl-dot:hover span,.nectar-recent-posts-single_featured .strong a,.post-area.standard-minimal .post .more-link span:before,.nectar-slide-in-cart .widget_shopping_cart a.button,.related-posts[data-style="material"] .meta-category a:before,.post-area.featured_img_left .meta-category a:before,body.material #page-header-bg.fullscreen-header .inner-wrap >a,.nectar-hor-list-item[data-color="accent-color"]:before,.material #sidebar .widget .tagcloud a:before,.single .post-area .content-inner > .post-tags a:before,.auto_meta_overlaid_spaced .post.quote .n-post-bg:after,.auto_meta_overlaid_spaced .post.link .n-post-bg:after,.post-area.featured_img_left .posts-container .article-content-wrap .video-play-button,.post-area.featured_img_left .post .quote-inner:before,.post-area.featured_img_left .link-inner:before,.nectar-recent-posts-single_featured.multiple_featured .controls li:after,.nectar-recent-posts-single_featured.multiple_featured .controls .active:before,.nectar-fancy-box[data-color="accent-color"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.accent-color[data-color-override="false"] i,body.material .nectar-video-box[data-color="default-accent-color"] .nectar_video_lightbox:before,.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:before,.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close:after,.fancybox-navigation button:hover:before,button[type=submit]:hover,button[type=submit]:focus,body[data-form-submit="see-through"] input[type=submit]:hover,body[data-form-submit="see-through"] button[type=submit]:hover,body[data-form-submit="see-through"] .container-wrap .span_12.light input[type=submit]:hover,body[data-form-submit="see-through"] .container-wrap .span_12.light button[type=submit]:hover,body.original .bypostauthor .comment-body:before,.widget_layered_nav ul.yith-wcan-label li a:hover,.widget_layered_nav ul.yith-wcan-label .chosen a,.nectar-next-section-wrap.bounce a:before,body .nectar-button.see-through-2[data-hover-color-override="false"]:hover{background-color:#1e73be!important;}#header-outer #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a,#header-outer nav > ul > .megamenu > ul ul li a:hover,#header-outer nav > ul > .megamenu > ul ul li a:focus,#header-outer nav > ul > .megamenu > ul ul .sfHover > a,#header-secondary-outer ul > li:not(.megamenu) .sfHover > a,#header-secondary-outer ul > li:not(.megamenu) ul a:hover,#header-secondary-outer ul > li:not(.megamenu) ul a:focus,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul ul .current-menu-item > a{background-color:#1e73be!important;}#header-outer[data-format="left-header"] #top nav > ul > li:not(.megamenu) ul a:hover{color:#1e73be;}#header-outer[data-format="left-header"] .sf-menu .sub-menu .current-menu-item > a,.sf-menu ul .open-submenu > a{color:#1e73be!important;}.tabbed > ul li .active-tab,body.material input[type=text]:focus,body.material textarea:focus,body.material input[type=email]:focus,body.material input[type=search]:focus,body.material input[type=password]:focus,body.material input[type=tel]:focus,body.material input[type=url]:focus,body.material input[type=date]:focus,body.material select:focus,.row .col .wp-caption .wp-caption-text,.material.woocommerce-page input#coupon_code:focus,.material #search-outer #search input[type="text"],#header-outer[data-lhe="animated_underline"] #top nav > ul > li > a .menu-title-text:after,div[data-style="minimal"] .toggle.default.open i,div[data-style="minimal"] .toggle.default:hover i,div[data-style="minimal"] .toggle.accent-color.open i,div[data-style="minimal"] .toggle.accent-color:hover i,.single #single-meta div a:hover,.single #single-meta div a:focus,.single .fullscreen-blog-header #single-below-header > span a:hover,.blog-title #single-meta .nectar-social.hover > div a:hover,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="accent-color"]:hover,.material.woocommerce-page[data-form-style="default"] div input#coupon_code:focus{border-color:#1e73be;}body[data-form-style="minimal"] label:after,body .recent_projects_widget a:hover img,.recent_projects_widget a:hover img,#sidebar #flickr a:hover img,body .nectar-button.see-through-2[data-hover-color-override="false"]:hover,#footer-outer #flickr a:hover img,#featured article .post-title a:hover,body #featured article .post-title a:hover,div.wpcf7-validation-errors,.select2-container .select2-choice:hover,.select2-dropdown-open .select2-choice,body:not(.original) .bypostauthor img.avatar,.material blockquote::before,blockquote.wp-block-quote:before,#header-outer:not(.transparent) #top nav > ul > .button_bordered > a:hover:before,.single #project-meta ul li:not(.meta-share-count):hover a,body[data-button-style="rounded"] #pagination > a:hover,body[data-form-submit="see-through"] input[type=submit],body[data-form-submit="see-through"] button[type=submit],.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="default-accent-color"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="default-accent-color"] .play:after,#header-secondary-outer[data-lhe="animated_underline"] nav > .sf-menu >li >a .menu-title-text:after,body.material .nectar-button.see-through.accent-color[data-color-override="false"],.woocommerce-page.material .widget_price_filter .ui-slider .ui-slider-handle,body[data-form-submit="see-through"] button[type=submit]:not(.search-widget-btn),.woocommerce-account[data-form-submit="see-through"] .woocommerce-form-login button.button,.woocommerce-account[data-form-submit="see-through"] .woocommerce-form-register button.button,body[data-form-submit="see-through"] .woocommerce #order_review #payment #place_order,body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single:hover,body[data-fancy-form-rcs="1"] .select2-container--default.select2-container--open .select2-selection--single,.gallery a:hover img{border-color:#1e73be!important;}.nectar-highlighted-text[data-using-custom-color="false"]:not([data-style="text_outline"]) em{background-image:linear-gradient(to right,rgba(30,115,190,0.3) 0,rgba(30,115,190,0.3) 100%);}.nectar-highlighted-text[data-using-custom-color="false"][data-style="regular_underline"] a em,.nectar-highlighted-text[data-using-custom-color="false"][data-style="regular_underline"] em.has-link{background-image:linear-gradient(to right,rgba(30,115,190,0.3) 0,rgba(30,115,190,0.3) 100%),linear-gradient(to right,#1e73be 0,#1e73be 100%);}.nectar_icon_wrap .svg-icon-holder[data-color="accent-color"] svg path{stroke:#1e73be!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.accent-color[data-color-override="false"] i:after{box-shadow:#1e73be 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="accent-color"]:before{box-shadow:0 30px 90px #1e73be;}.nectar-fancy-box[data-style="hover_desc"][data-color="accent-color"]:before{background:linear-gradient(to bottom,rgba(0,0,0,0),#1e73be 100%);}#footer-outer[data-link-hover="underline"][data-custom-color="false"] #footer-widgets ul:not([class*="nectar_blog_posts"]):not(.cart_list) a:not(.tag-cloud-link):not(.nectar-button),#footer-outer[data-link-hover="underline"] #footer-widgets .textwidget a:not(.nectar-button){background-image:linear-gradient(to right,#1e73be 0,#1e73be 100%);}#search-results .result .title a{background-image:linear-gradient(to right,#1e73be 0,#1e73be 100%);}.container-wrap .bottom_controls #portfolio-nav ul:first-child li#all-items a:hover i{box-shadow:-.6em 0 #1e73be,-.6em .6em #1e73be,.6em 0 #1e73be,.6em -.6em #1e73be,0 -.6em #1e73be,-.6em -.6em #1e73be,0 .6em #1e73be,.6em .6em #1e73be;}#fp-nav:not(.light-controls).tooltip_alt ul li a.active span,#fp-nav.tooltip_alt ul li a.active span{box-shadow:inset 0 0 0 2px #1e73be;-webkit-box-shadow:inset 0 0 0 2px #1e73be;}.default-loading-icon:before{border-top-color:#1e73be!important;}#header-outer a.cart-contents span:before,#fp-nav.tooltip ul li .fp-tooltip .tooltip-inner:after{border-color:transparent #1e73be!important;}body .testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] blockquote .bottom-arrow:after,.portfolio-items[data-ps="6"] .bg-overlay,.portfolio-items[data-ps="6"].no-masonry .bg-overlay,.nectar_team_member_close .inner,.nectar_team_member_overlay .team_member_details .bio-inner .mobile-close{border-color:#1e73be;}.widget .nectar_widget[class*="nectar_blog_posts_"] .arrow-circle svg circle,.nectar-woo-flickity[data-controls="arrows-and-text"] .flickity-prev-next-button svg circle.time{stroke:#1e73be;}.im-icon-wrap[data-color="accent-color"] path{fill:#1e73be;}@media only screen and (min-width :1px) and (max-width :1000px){body #featured article .post-title > a{background-color:#1e73be;}body #featured article .post-title > a{border-color:#1e73be;}}#header-outer .widget_shopping_cart .cart_list li a.remove,.original #header-outer .woocommerce.widget_shopping_cart .cart_list li a.remove,.stock.out-of-stock,#header-outer #top nav > ul > .button_bordered_2 > a:hover,#header-outer[data-lhe="default"] #top nav > ul > .button_bordered_2 > a:hover,#header-outer[data-lhe="default"] #top nav .sf-menu .button_bordered_2.current-menu-item > a{color:#b40106!important;}#top nav > ul > .button_solid_color_2 > a:before,#header-outer.transparent #top nav > ul > .button_solid_color_2 > a:before,body[data-slide-out-widget-area-style="slide-out-from-right"]:not([data-header-color="custom"]).material .slide_out_area_close:before,#header-outer .widget_shopping_cart a.button,.woocommerce ul.products li.product .onsale,.woocommerce-page ul.products li.product .onsale,.woocommerce span.onsale,.woocommerce-page span.onsale{background-color:#b40106;}#header-outer .woocommerce.widget_shopping_cart .cart_list li a.remove,#header-outer .woocommerce.widget_shopping_cart .cart_list li a.remove,#header-outer:not(.transparent) #top nav > ul > .button_bordered_2 > a:hover:before{border-color:#b40106;}.testimonial_slider[data-rating-color="extra-color-1"] .star-rating .filled:before,div[data-style="minimal"] .toggle.extra-color-1:hover h3 a,div[data-style="minimal"] .toggle.extra-color-1.open h3 a,div[data-style="minimal_small"] .toggle.extra-color-1 > h3 a:hover,div[data-style="minimal_small"] .toggle.extra-color-1.open > h3 a{color:#b40106;}.nectar-milestone .number.extra-color-1,span.extra-color-1,.team-member .social.extra-color-1 li a,body [class^="icon-"].icon-default-style.extra-color-1,body [class^="icon-"].icon-default-style[data-color="extra-color-1"],.team-member .extra-color-1:hover,.svg-icon-holder[data-color="extra-color-1"],.nectar_icon_wrap[data-color="extra-color-1"] i,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-1-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-1-underline"].full-width-section a:hover,body.material .nectar-button.see-through.extra-color-1[data-color-override="false"],.nectar_single_testimonial[data-color="extra-color-1"] p .open-quote,.no-highlight.extra-color-1 h3{color:#b40106!important;}.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-1"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] blockquote.is-selected p,.nectar-button.nectar_video_lightbox[data-color="default-extra-color-1"],.nectar_video_lightbox.nectar-button[data-color="transparent-extra-color-1"]:hover,.nectar-cta[data-color="extra-color-1"]:not([data-style="material"]) .link_wrap,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="extra-color-1"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="extra-color-1"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="extra-color-1"] .visualized-total span,.nectar-post-grid-wrap[data-load-more-color="extra-color-1"] .load-more:hover,[class*=" icon-"].extra-color-1.icon-normal,div[data-style="minimal"] .toggle.extra-color-1.open i:after,div[data-style="minimal"] .toggle.extra-color-1:hover i:after,div[data-style="minimal"] .toggle.open.extra-color-1 i:before,div[data-style="minimal"] .toggle.extra-color-1:hover i:before,div[data-style="minimal_small"] .toggle.extra-color-1 > h3:after,.toggle.open.extra-color-1 h3 a,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-1"] .nectar-list-item-btn:hover{background-color:#b40106;}.nectar-button.regular-button.extra-color-1,.nectar-button.tilt.extra-color-1,body .swiper-slide .button.transparent_2 .extra-color-1:hover,#sidebar .widget:hover [class^="icon-"].icon-3x.extra-color-1:not(.alt-style),.portfolio-filters-inline[data-color-scheme="extra-color-1"],.portfolio-filters[data-color-scheme="extra-color-1"] #sort-portfolio,.portfolio-filters[data-color-scheme="extra-color-1"] a,.nectar-fancy-box[data-color="extra-color-1"]:after,.divider-small-border[data-color="extra-color-1"],.divider-border[data-color="extra-color-1"],.nectar-animated-title[data-color="extra-color-1"] .nectar-animated-title-inner:after,.portfolio-filters-inline[data-color-scheme="extra-color-1-underline"] a:after,.nectar-video-box[data-color="extra-color-1"] .nectar_video_lightbox,body .nectar-video-box[data-color="extra-color-1"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="extra-color-1"]:not([data-style="small"]) .play > .inner-wrap:before,body.material .nectar-video-box[data-color="extra-color-1"] .nectar_video_lightbox:before,.nectar-hor-list-item[data-color="extra-color-1"]:before,.nectar-fancy-box[data-color="extra-color-1"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-1[data-color-override="false"] i,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-1"] li:after,.extra-color-1.icon-normal,.bar_graph li .extra-color-1,.nectar-progress-bar .extra-color-1,.swiper-slide .button.solid_color .extra-color-1,.swiper-slide .button.solid_color_2 .extra-color-1{background-color:#b40106!important;}.nectar_icon_wrap .svg-icon-holder[data-color="extra-color-1"] svg path{stroke:#b40106!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-1[data-color-override="false"] i:after{box-shadow:#b40106 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-1"]:before{box-shadow:0 30px 90px #b40106;}.nectar-fancy-box[data-style="hover_desc"][data-color="extra-color-1"]:before{background:linear-gradient(to bottom,rgba(0,0,0,0),#b40106 100%);}body .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-1"] blockquote .bottom-arrow:after,div[data-style="minimal"] .toggle.open.extra-color-1 i,div[data-style="minimal"] .toggle.extra-color-1:hover i,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-1"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-1"] .play:after,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-1"]:hover{border-color:#b40106;}body.material .nectar-button.see-through.extra-color-1[data-color-override="false"]{border-color:#b40106!important;}.im-icon-wrap[data-color="extra-color-1"] path{fill:#b40106;}.testimonial_slider[data-rating-color="extra-color-2"] .star-rating .filled:before,div[data-style="minimal"] .toggle.extra-color-2:hover h3 a,div[data-style="minimal"] .toggle.extra-color-2.open h3 a,div[data-style="minimal_small"] .toggle.extra-color-2 > h3 a:hover,div[data-style="minimal_small"] .toggle.extra-color-2.open > h3 a{color:#29aa6a;}.nectar-milestone .number.extra-color-2,span.extra-color-2,.team-member .social.extra-color-2 li a,body [class^="icon-"].icon-default-style.extra-color-2,body [class^="icon-"].icon-default-style[data-color="extra-color-2"],.team-member .extra-color-2:hover,.svg-icon-holder[data-color="extra-color-2"],.nectar_icon_wrap[data-color="extra-color-2"] i,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-2-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-2-underline"].full-width-section a:hover,body.material .nectar-button.see-through.extra-color-2[data-color-override="false"],.nectar_single_testimonial[data-color="extra-color-2"] p .open-quote,.no-highlight.extra-color-2 h3{color:#29aa6a!important;}.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-2"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] blockquote.is-selected p,.nectar-button.nectar_video_lightbox[data-color="default-extra-color-2"],.nectar_video_lightbox.nectar-button[data-color="transparent-extra-color-2"]:hover,.nectar-cta[data-color="extra-color-2"]:not([data-style="material"]) .link_wrap,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="extra-color-2"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="extra-color-2"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="extra-color-2"] .visualized-total span,.nectar-post-grid-wrap[data-load-more-color="extra-color-2"] .load-more:hover,[class*=" icon-"].extra-color-2.icon-normal,div[data-style="minimal"] .toggle.extra-color-2.open i:after,div[data-style="minimal"] .toggle.extra-color-2:hover i:after,div[data-style="minimal"] .toggle.open.extra-color-2 i:before,div[data-style="minimal"] .toggle.extra-color-2:hover i:before,div[data-style="minimal_small"] .toggle.extra-color-2 > h3:after,.toggle.open.extra-color-2 h3 a,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-2"] .nectar-list-item-btn:hover{background-color:#29aa6a;}.nectar-button.regular-button.extra-color-2,.nectar-button.tilt.extra-color-2,body .swiper-slide .button.transparent_2 .extra-color-2:hover,#sidebar .widget:hover [class^="icon-"].icon-3x.extra-color-2:not(.alt-style),.portfolio-filters-inline[data-color-scheme="extra-color-2"],.portfolio-filters[data-color-scheme="extra-color-2"] #sort-portfolio,.portfolio-filters[data-color-scheme="extra-color-2"] a,.nectar-fancy-box[data-color="extra-color-2"]:after,.divider-small-border[data-color="extra-color-2"],.divider-border[data-color="extra-color-2"],.nectar-animated-title[data-color="extra-color-2"] .nectar-animated-title-inner:after,.portfolio-filters-inline[data-color-scheme="extra-color-2-underline"] a:after,.nectar-video-box[data-color="extra-color-2"] .nectar_video_lightbox,body .nectar-video-box[data-color="extra-color-2"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="extra-color-2"]:not([data-style="small"]) .play > .inner-wrap:before,body.material .nectar-video-box[data-color="extra-color-2"] .nectar_video_lightbox:before,.nectar-hor-list-item[data-color="extra-color-2"]:before,.nectar-fancy-box[data-color="extra-color-2"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-2[data-color-override="false"] i,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-2"] li:after,.extra-color-2.icon-normal,.bar_graph li .extra-color-2,.nectar-progress-bar .extra-color-2,.swiper-slide .button.solid_color .extra-color-2,.swiper-slide .button.solid_color_2 .extra-color-2{background-color:#29aa6a!important;}.nectar_icon_wrap .svg-icon-holder[data-color="extra-color-2"] svg path{stroke:#29aa6a!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-2[data-color-override="false"] i:after{box-shadow:#29aa6a 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-2"]:before{box-shadow:0 30px 90px #29aa6a;}.nectar-fancy-box[data-style="hover_desc"][data-color="extra-color-2"]:before{background:linear-gradient(to bottom,rgba(0,0,0,0),#29aa6a 100%);}body .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-2"] blockquote .bottom-arrow:after,div[data-style="minimal"] .toggle.open.extra-color-2 i,div[data-style="minimal"] .toggle.extra-color-2:hover i,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-2"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-2"] .play:after,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-2"]:hover{border-color:#29aa6a;}body.material .nectar-button.see-through.extra-color-2[data-color-override="false"]{border-color:#29aa6a!important;}.im-icon-wrap[data-color="extra-color-2"] path{fill:#29aa6a;}.testimonial_slider[data-rating-color="extra-color-3"] .star-rating .filled:before,div[data-style="minimal"] .toggle.extra-color-3:hover h3 a,div[data-style="minimal"] .toggle.extra-color-3.open h3 a,div[data-style="minimal_small"] .toggle.extra-color-3 > h3 a:hover,div[data-style="minimal_small"] .toggle.extra-color-3.open > h3 a{color:#1e73be;}.nectar-milestone .number.extra-color-3,span.extra-color-3,.team-member .social.extra-color-3 li a,body [class^="icon-"].icon-default-style.extra-color-3,body [class^="icon-"].icon-default-style[data-color="extra-color-3"],.team-member .extra-color-3:hover,.svg-icon-holder[data-color="extra-color-3"],.nectar_icon_wrap[data-color="extra-color-3"] i,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-3-underline"].full-width-section .active,body .wpb_row .span_12 .portfolio-filters-inline[data-color-scheme="extra-color-3-underline"].full-width-section a:hover,body.material .nectar-button.see-through.extra-color-3[data-color-override="false"],.nectar_single_testimonial[data-color="extra-color-3"] p .open-quote,.no-highlight.extra-color-3 h3{color:#1e73be!important;}.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-3"] a:after,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] .flickity-page-dots .dot.is-selected:before,.testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] blockquote.is-selected p,.nectar-button.nectar_video_lightbox[data-color="default-extra-color-3"],.nectar_video_lightbox.nectar-button[data-color="transparent-extra-color-3"]:hover,.nectar-cta[data-color="extra-color-3"]:not([data-style="material"]) .link_wrap,.nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="extra-color-3"] .flickity-prev-next-button:hover:before,.nectar-flickity[data-controls="default"][data-control-color="extra-color-3"] .flickity-page-dots .dot:before,.nectar-flickity[data-controls="touch_total"][data-control-color="extra-color-3"] .visualized-total span,.nectar-post-grid-wrap[data-load-more-color="extra-color-3"] .load-more:hover,[class*=" icon-"].extra-color-3.icon-normal,div[data-style="minimal"] .toggle.extra-color-3.open i:after,div[data-style="minimal"] .toggle.extra-color-3:hover i:after,div[data-style="minimal"] .toggle.open.extra-color-3 i:before,div[data-style="minimal"] .toggle.extra-color-3:hover i:before,div[data-style="minimal_small"] .toggle.extra-color-3 > h3:after,.toggle.open.extra-color-3 h3 a,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-3"] .nectar-list-item-btn:hover{background-color:#1e73be;}.nectar-button.regular-button.extra-color-3,.nectar-button.tilt.extra-color-3,body .swiper-slide .button.transparent_2 .extra-color-3:hover,#sidebar .widget:hover [class^="icon-"].icon-3x.extra-color-3:not(.alt-style),.portfolio-filters-inline[data-color-scheme="extra-color-3"],.portfolio-filters[data-color-scheme="extra-color-3"] #sort-portfolio,.portfolio-filters[data-color-scheme="extra-color-3"] a,.nectar-fancy-box[data-color="extra-color-3"]:after,.divider-small-border[data-color="extra-color-3"],.divider-border[data-color="extra-color-3"],.nectar-animated-title[data-color="extra-color-3"] .nectar-animated-title-inner:after,.portfolio-filters-inline[data-color-scheme="extra-color-3-underline"] a:after,.nectar-video-box[data-color="extra-color-3"] .nectar_video_lightbox,body .nectar-video-box[data-color="extra-color-3"][data-hover="zoom_button"] .nectar_video_lightbox:after,.nectar_video_lightbox.play_button_with_text[data-color="extra-color-3"]:not([data-style="small"]) .play > .inner-wrap:before,body.material .nectar-video-box[data-color="extra-color-3"] .nectar_video_lightbox:before,.nectar-hor-list-item[data-color="extra-color-3"]:before,.nectar-fancy-box[data-color="extra-color-3"]:not([data-style="default"]) .box-bg:after,body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-3[data-color-override="false"] i,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-3"] li:after,.extra-color-3.icon-normal,.bar_graph li .extra-color-3,.nectar-progress-bar .extra-color-3,.swiper-slide .button.solid_color .extra-color-3,.swiper-slide .button.solid_color_2 .extra-color-3{background-color:#1e73be!important;}.nectar_icon_wrap .svg-icon-holder[data-color="extra-color-3"] svg path{stroke:#1e73be!important;}body.material[data-button-style^="rounded"] .nectar-button.see-through.extra-color-3[data-color-override="false"] i:after{box-shadow:#1e73be 0 8px 15px;opacity:0.24;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-3"]:before{box-shadow:0 30px 90px #1e73be;}.nectar-fancy-box[data-style="hover_desc"][data-color="extra-color-3"]:before{background:linear-gradient(to bottom,rgba(0,0,0,0),#1e73be 100%);}body .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] blockquote .bottom-arrow:after,body .dark .testimonial_slider[data-style="multiple_visible"][data-color*="extra-color-3"] blockquote .bottom-arrow:after,div[data-style="minimal"] .toggle.open.extra-color-3 i,div[data-style="minimal"] .toggle.extra-color-3:hover i,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-3"] .play:before,.span_12.dark .nectar_video_lightbox.play_button_with_text[data-color="extra-color-3"] .play:after,.nectar-hor-list-item[data-hover-effect="full_border"][data-color="extra-color-3"]:hover{border-color:#1e73be;}body.material .nectar-button.see-through.extra-color-3[data-color-override="false"]{border-color:#1e73be!important;}.im-icon-wrap[data-color="extra-color-3"] path{fill:#1e73be;}.widget .nectar_widget[class*="nectar_blog_posts_"][data-style="hover-featured-image-gradient-and-counter"] > li a .popular-featured-img:after{background:#ff2323;background:linear-gradient(to right,#ff2323,#ff1053);}.divider-small-border[data-color="extra-color-gradient-1"],.divider-border[data-color="extra-color-gradient-1"],.nectar-progress-bar .extra-color-gradient-1,.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-gradient-1"] a:after,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-gradient-1"] li:after,.nectar-fancy-box[data-style="default"][data-color="extra-color-gradient-1"]:after{background:#ff1053;background:linear-gradient(to right,#ff1053,#ff2323);}.icon-normal.extra-color-gradient-1,body [class^="icon-"].icon-3x.alt-style.extra-color-gradient-1,.nectar-button.extra-color-gradient-1:after,.nectar-cta[data-color="extra-color-gradient-1"]:not([data-style="material"]) .link_wrap,.nectar-button.see-through-extra-color-gradient-1:after,.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-1"] .box-bg:after,.nectar-post-grid-wrap[data-load-more-color="extra-color-gradient-1"] .load-more:before{background:#ff1053;background:linear-gradient(to bottom right,#ff1053,#ff2323);}body.material .nectar-button.regular.m-extra-color-gradient-1,body.material .nectar-button.see-through.m-extra-color-gradient-1:before,.swiper-slide .button.solid_color .extra-color-gradient-1,.swiper-slide .button.transparent_2 .extra-color-gradient-1:before{background:#ff1053;background:linear-gradient(125deg,#ff1053,#ff2323);}body.material .nectar-button.regular.m-extra-color-gradient-1:before{background:#ff2323;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-1"]:before{box-shadow:0 30px 90px #ff2323;}.testimonial_slider[data-rating-color="extra-color-gradient-1"] .star-rating .filled:before{color:#ff1053;background:linear-gradient(to right,#ff1053,#ff2323);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent;}.nectar-button.extra-color-gradient-1,.nectar-button.see-through-extra-color-gradient-1{border-width:3px;border-style:solid;-moz-border-image:-moz-linear-gradient(top right,#ff1053 0,#ff2323 100%);-webkit-border-image:-webkit-linear-gradient(top right,#ff1053 0,#ff2323 100%);border-image:linear-gradient(to bottom right,#ff1053 0,#ff2323 100%);border-image-slice:1;}[class^="icon-"][data-color="extra-color-gradient-1"]:before,[class*=" icon-"][data-color="extra-color-gradient-1"]:before,[class^="icon-"].extra-color-gradient-1:not(.icon-normal):before,[class*=" icon-"].extra-color-gradient-1:not(.icon-normal):before,.nectar_icon_wrap[data-color="extra-color-gradient-1"]:not([data-style="shadow-bg"]) i{color:#ff1053;background:linear-gradient(to bottom right,#ff1053,#ff2323);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent;display:initial;}.nectar-button.extra-color-gradient-1 .hover,.nectar-button.see-through-extra-color-gradient-1 .start{background:#ff1053;background:linear-gradient(to bottom right,#ff1053,#ff2323);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent;display:initial;}.nectar-button.extra-color-gradient-1.no-text-grad .hover,.nectar-button.see-through-extra-color-gradient-1.no-text-grad .start{background:transparent!important;color:#ff1053!important;}.divider-small-border[data-color="extra-color-gradient-2"],.divider-border[data-color="extra-color-gradient-2"],.nectar-progress-bar .extra-color-gradient-2,.wpb_row .nectar-post-grid-filters[data-active-color="extra-color-gradient-2"] a:after,.nectar-recent-posts-single_featured.multiple_featured .controls[data-color="extra-color-gradient-2"] li:after,.nectar-fancy-box[data-style="default"][data-color="extra-color-gradient-2"]:after{background:#ffffff;background:linear-gradient(to right,#ffffff,#2AC4EA);}.icon-normal.extra-color-gradient-2,body [class^="icon-"].icon-3x.alt-style.extra-color-gradient-2,.nectar-button.extra-color-gradient-2:after,.nectar-cta[data-color="extra-color-gradient-2"]:not([data-style="material"]) .link_wrap,.nectar-button.see-through-extra-color-gradient-2:after,.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-2"] .box-bg:after,.nectar-post-grid-wrap[data-load-more-color="extra-color-gradient-2"] .load-more:before{background:#ffffff;background:linear-gradient(to bottom right,#ffffff,#2AC4EA);}body.material .nectar-button.regular.m-extra-color-gradient-2,body.material .nectar-button.see-through.m-extra-color-gradient-2:before,.swiper-slide .button.solid_color .extra-color-gradient-2,.swiper-slide .button.transparent_2 .extra-color-gradient-2:before{background:#ffffff;background:linear-gradient(125deg,#ffffff,#2AC4EA);}body.material .nectar-button.regular.m-extra-color-gradient-2:before{background:#2AC4EA;}.nectar-fancy-box[data-style="color_box_hover"][data-color="extra-color-gradient-2"]:before{box-shadow:0 30px 90px #2AC4EA;}.testimonial_slider[data-rating-color="extra-color-gradient-2"] .star-rating .filled:before{color:#ffffff;background:linear-gradient(to right,#ffffff,#2AC4EA);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent;}.nectar-button.extra-color-gradient-2,.nectar-button.see-through-extra-color-gradient-2{border-width:3px;border-style:solid;-moz-border-image:-moz-linear-gradient(top right,#ffffff 0,#2AC4EA 100%);-webkit-border-image:-webkit-linear-gradient(top right,#ffffff 0,#2AC4EA 100%);border-image:linear-gradient(to bottom right,#ffffff 0,#2AC4EA 100%);border-image-slice:1;}[class^="icon-"][data-color="extra-color-gradient-2"]:before,[class*=" icon-"][data-color="extra-color-gradient-2"]:before,[class^="icon-"].extra-color-gradient-2:not(.icon-normal):before,[class*=" icon-"].extra-color-gradient-2:not(.icon-normal):before,.nectar_icon_wrap[data-color="extra-color-gradient-2"]:not([data-style="shadow-bg"]) i{color:#ffffff;background:linear-gradient(to bottom right,#ffffff,#2AC4EA);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent;display:initial;}.nectar-button.extra-color-gradient-2 .hover,.nectar-button.see-through-extra-color-gradient-2 .start{background:#ffffff;background:linear-gradient(to bottom right,#ffffff,#2AC4EA);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;text-fill-color:transparent;display:initial;}.nectar-button.extra-color-gradient-2.no-text-grad .hover,.nectar-button.see-through-extra-color-gradient-2.no-text-grad .start{background:transparent!important;color:#ffffff!important;}body,.container-wrap,.material .ocm-effect-wrap,.project-title,.ascend .container-wrap,.ascend .project-title,body .vc_text_separator div,.carousel-wrap[data-full-width="true"] .carousel-heading,.carousel-wrap .left-border,.carousel-wrap .right-border,.single-post.ascend #page-header-bg.fullscreen-header,.single-post #single-below-header.fullscreen-header,#page-header-wrap,.page-header-no-bg,#full_width_portfolio .project-title.parallax-effect,.portfolio-items .col,.page-template-template-portfolio-php .portfolio-items .col.span_3,.page-template-template-portfolio-php .portfolio-items .col.span_4,body .nectar-quick-view-box div.product .product div.summary,.nectar-global-section.before-footer,.nectar-global-section.after-nav,body.box-rolling,body[data-footer-reveal="1"].ascend.box-rolling,body[data-footer-reveal="1"].box-rolling{background-color:#ffffff;}body,body h1,body h2,body h3,body h4,body h5,body h6,.woocommerce div.product .woocommerce-tabs .full-width-content ul.tabs li a,.woocommerce .woocommerce-breadcrumb a,.woocommerce .woocommerce-breadcrumb i,body:not(.original) .comment-list .comment-author,body:not(.original) .comment-list .pingback .comment-body > a,.post-area.standard-minimal .post .more-link span,#sidebar .widget .nectar_widget[class*="nectar_blog_posts_"] > li .post-date{color:#2b2e34;}.ascend #author-bio .nectar-button:not(:hover){color:#2b2e34!important;border-color:#2b2e34!important;}.comment-list .comment-meta a:not(:hover),.material .comment-list .reply a:not(:hover){color:#2b2e34;opacity:0.7;}#sidebar h4,.ascend.woocommerce #sidebar h4,body .row .col.section-title span{color:#2b2e34;}#ajax-content-wrap ul.products li.product.minimal .price{color:#2b2e34!important;}.single .heading-title[data-header-style="default_minimal"] .meta-category a{color:#2b2e34;border-color:#2b2e34;}.full-width-section > .col.span_12.dark,.full-width-content > .col.span_12.dark{color:#2b2e34;}.full-width-section > .col.span_12.dark .portfolio-items .col h3,.full-width-section > .col.span_12.dark .portfolio-items[data-ps="6"] .work-meta h4{color:#fff;}body #header-outer,body #search-outer,body.ascend #search-outer,body[data-header-format="left-header"].ascend #search-outer,.material #header-space,#header-space,.material #header-outer .bg-color-stripe,.material #search-outer .bg-color-stripe,.material #header-outer #search-outer:before,body[data-header-format="left-header"].material #search-outer,body.material[data-header-format="centered-menu-bottom-bar"] #page-header-wrap.fullscreen-header,body #header-outer #mobile-menu:before,.nectar-slide-in-cart.style_slide_in_click{background-color:#ffffff;}body .nectar-slide-in-cart:not(.style_slide_in_click) .blockUI.blockOverlay{background-color:#ffffff!important;}body #header-outer,body[data-header-color="dark"] #header-outer{background-color:rgba(255,255,255,100);}.material #header-outer:not(.transparent) .bg-color-stripe{display:none;}#header-outer #top nav > ul > li > a,#header-outer .slide-out-widget-area-toggle a i.label,#header-outer:not(.transparent) #top #logo,#header-outer #top .span_9 > .slide-out-widget-area-toggle i,#header-outer #top .sf-sub-indicator i,body[data-header-color="custom"].ascend #boxed #header-outer .cart-menu .cart-icon-wrap i,#header-outer #top nav ul #nectar-user-account a span,#header-outer #top #toggle-nav i,.material #header-outer:not([data-permanent-transparent="1"]) .mobile-search .icon-salient-search,#header-outer:not([data-permanent-transparent="1"]) .mobile-user-account .icon-salient-m-user,#header-outer:not([data-permanent-transparent="1"]) .mobile-search .icon-salient-search,#header-outer #top #mobile-cart-link i,#header-outer .cart-menu .cart-icon-wrap .icon-salient-cart,body[data-header-format="left-header"] #header-outer #social-in-menu a,#header-outer #top nav ul #search-btn a span,#search-outer #search input[type="text"],#search-outer #search #close a span,body.ascend #search-outer #search #close a span,body.ascend #search-outer #search input[type="text"],.material #search-outer #search .span_12 span,.style_slide_in_click .total,.style_slide_in_click .total strong,.nectar-slide-in-cart.style_slide_in_click h4,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list.woocommerce-mini-cart .mini_cart_item a,.style_slide_in_click .woocommerce-mini-cart__empty-message h3{color:#29aa6a!important;}body #header-outer .nectar-header-text-content,.nectar-ajax-search-results .search-post-item{color:#29aa6a;}.material #header-outer #search-outer input::-webkit-input-placeholder,body[data-header-format="left-header"].material #search-outer input::-webkit-input-placeholder{color:#29aa6a!important;}#header-outer #mobile-menu ul li a,#header-outer #mobile-menu ul li a .item_desc,#header-outer #mobile-menu .below-menu-items-wrap p{color:#29aa6a!important;}#header-outer #top .slide-out-widget-area-toggle a .lines:after,#header-outer #top .slide-out-widget-area-toggle a .lines:before,#header-outer #top .slide-out-widget-area-toggle a .lines-button:after,body.material.mobile #header-outer.transparent:not([data-permanent-transparent="1"]) header .slide-out-widget-area-toggle a .close-line,body.material.mobile #header-outer:not([data-permanent-transparent="1"]) header .slide-out-widget-area-toggle a .close-line,#search-outer .close-wrap .close-line,#header-outer:not(.transparent) #top .slide-out-widget-area-toggle .close-line,.nectar-slide-in-cart.style_slide_in_click .close-cart .close-line,.nectar-ajax-search-results h4 a:before{background-color:#29aa6a;}#top nav > ul > .button_bordered > a:before,#header-outer:not(.transparent) #top .slide-out-widget-area-toggle .close-line{border-color:#29aa6a;}#header-outer .slide-out-widget-area-toggle a:hover i.label,body #header-outer:not(.transparent) #social-in-menu a i:after,.ascend #header-outer:not(.transparent) .cart-outer:hover .cart-menu-wrap:not(.has_products) .icon-salient-cart,body.material #header-outer:not(.transparent) .cart-outer:hover .cart-menu-wrap .icon-salient-cart,body #top nav .sf-menu > .current_page_ancestor > a .sf-sub-indicator i,body #top nav .sf-menu > .current_page_item > a .sf-sub-indicator i,#header-outer #top .sf-menu > .sfHover > a .sf-sub-indicator i,#header-outer #top .sf-menu > li > a:hover .sf-sub-indicator i,#header-outer #top nav ul #search-btn a:hover span,#header-outer #top nav ul #nectar-user-account a:hover span,#header-outer #top nav ul .slide-out-widget-area-toggle a:hover span,body:not(.material) #search-outer #search #close a span:hover{color:#29aa6a!important;}#top .sf-menu > li.nectar-regular-menu-item > a:hover > .nectar-menu-icon,#top .sf-menu > li.nectar-regular-menu-item.sfHover > a > .nectar-menu-icon,#top .sf-menu > li.nectar-regular-menu-item[class*="current-"] > a > .nectar-menu-icon,#header-outer[data-lhe="default"]:not(.transparent) .nectar-header-text-content a:hover{color:#29aa6a;}.nectar-ajax-search-results .search-post-item h5{background-image:linear-gradient(to right,#29aa6a 0,#29aa6a 100%);}#header-outer #mobile-menu ul li a:hover,#header-outer #mobile-menu ul li a:hover .sf-sub-indicator i,#header-outer #mobile-menu ul li a:focus,#header-outer #mobile-menu ul li a:focus .sf-sub-indicator i,#header-outer #mobile-menu ul li[class*="current"] > a,#header-outer #mobile-menu ul li[class*="current"] > a i{color:#29aa6a!important;}#header-outer:not(.transparent) #top nav ul .slide-out-widget-area-toggle a:hover .lines:after,#header-outer:not(.transparent) #top nav ul .slide-out-widget-area-toggle a:hover .lines:before,#header-outer:not(.transparent) #top nav ul .slide-out-widget-area-toggle a:hover .lines-button:after,body[data-header-format="left-header"] #header-outer[data-lhe="animated_underline"] #top nav > ul > li:not([class*="button_"]) > a > span:after,#header-outer[data-lhe="animated_underline"] .nectar-header-text-content a:after{background-color:#29aa6a!important;}#header-outer[data-lhe="animated_underline"] #top nav > ul > li > a .menu-title-text:after,body.material #header-outer #search-outer #search input[type="text"],body[data-header-format="left-header"].material #search-outer #search input[type="text"]{border-color:#29aa6a;}#top .sf-menu > li.nectar-regular-menu-item > a > .nectar-menu-icon{color:#888888;}#search-outer .ui-widget-content,body:not([data-header-format="left-header"]) #top .sf-menu li ul,#header-outer nav > ul > .megamenu > .sub-menu,body #header-outer nav > ul > .megamenu > .sub-menu > li > a,#header-outer .widget_shopping_cart .cart_list a,#header-outer .widget_shopping_cart .cart_list li,#header-outer .widget_shopping_cart_content,.woocommerce .cart-notification,#header-secondary-outer ul ul li a,#header-secondary-outer .sf-menu li ul{background-color:#ffffff;}body[data-header-format="left-header"] #header-outer .cart-outer .cart-notification:after{border-color:transparent transparent #ffffff transparent;}#top .sf-menu li ul li a:hover,body #top nav .sf-menu ul .sfHover > a,#top .sf-menu li ul .current-menu-item > a,#top .sf-menu li ul .current-menu-ancestor > a,#header-outer nav > ul > .megamenu > ul ul li a:hover,#header-outer nav > ul > .megamenu > ul ul li a:focus,#header-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-secondary-outer ul ul li a:hover,#header-secondary-outer ul ul li a:focus,#header-secondary-outer ul > li:not(.megamenu) ul a:hover,body #header-secondary-outer .sf-menu ul .sfHover > a,#search-outer .ui-widget-content li:hover,#search-outer .ui-state-hover,#search-outer .ui-widget-content .ui-state-hover,#search-outer .ui-widget-header .ui-state-hover,#search-outer .ui-state-focus,#search-outer .ui-widget-content .ui-state-focus,#search-outer .ui-widget-header .ui-state-focus,#header-outer #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer nav > ul > .megamenu > ul ul .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a{background-color:#29aa6a!important;}#search-outer .ui-widget-content li a,#search-outer .ui-widget-content i,#top .sf-menu li ul li a,body #header-outer .widget_shopping_cart .cart_list a,#header-secondary-outer ul ul li a,.woocommerce .cart-notification .item-name,.cart-outer .cart-notification,#header-outer #top .sf-menu li ul .sf-sub-indicator i,#header-outer .widget_shopping_cart .quantity,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a,#header-outer .cart-notification .item-name,#header-outer #top nav > ul > .nectar-woo-cart .cart-outer .widget ul a:hover,#header-outer .cart-outer .total strong,#header-outer .cart-outer .total,#header-outer ul.product_list_widget li dl dd,#header-outer ul.product_list_widget li dl dt{color:#474747!important;}.sf-menu .widget-area-active .widget *,.sf-menu .widget-area-active:hover .widget *{color:#474747;}#top .sf-menu > li li > a > .nectar-menu-icon{color:#3452ff;}#search-outer .ui-widget-content li:hover *,#search-outer .ui-widget-content .ui-state-focus *,body #top nav .sf-menu ul .sfHover > a,#header-secondary-outer ul ul li:hover > a,#header-secondary-outer ul ul li:hover > a i,#header-secondary-outer ul .sfHover > a,body[data-dropdown-style="minimal"] #header-secondary-outer ul > li:not(.megamenu) .sfHover > a,body #top nav .sf-menu ul .sfHover > a .sf-sub-indicator i,body #top nav .sf-menu ul li:hover > a .sf-sub-indicator i,body #top nav .sf-menu ul li:hover > a,body #top nav .sf-menu ul .current-menu-item > a,body #top nav .sf-menu ul .current_page_item > a .sf-sub-indicator i,body #top nav .sf-menu ul .current_page_ancestor > a .sf-sub-indicator i,body #top nav .sf-menu ul .sfHover > a,body #top nav .sf-menu ul .current_page_ancestor > a,body #top nav .sf-menu ul .current-menu-ancestor > a,body #top nav .sf-menu ul .current_page_item > a,body .sf-menu ul li ul .sfHover > a .sf-sub-indicator i,body .sf-menu > li > a:active > .sf-sub-indicator i,body .sf-menu > .sfHover > a > .sf-sub-indicator i,body .sf-menu li ul .sfHover > a,#header-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-outer nav > ul > .megamenu > ul > li > a:hover,#header-outer nav > ul > .megamenu > ul > .sfHover > a,body #header-outer nav > ul > .megamenu ul li:hover > a,#header-outer #top nav ul li .sfHover > a .sf-sub-indicator i,#header-outer #top nav > ul > .megamenu > ul ul li a:hover,#header-outer #top nav > ul > .megamenu > ul ul li a:focus,#header-outer #top nav > ul > .megamenu > ul ul .sfHover > a,#header-outer #header-secondary-outer nav > ul > .megamenu > ul ul li a:hover,#header-outer #header-secondary-outer nav > ul > .megamenu > ul ul li a:focus,#header-outer #header-secondary-outer nav > ul > .megamenu > ul ul .sfHover > a,#header-outer #top nav ul li li:hover > a .sf-sub-indicator i,#header-outer[data-format="left-header"] .sf-menu .sub-menu .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer #top nav > ul > .megamenu > ul ul .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer #header-secondary-outer nav > ul > .megamenu > ul ul .current-menu-item > a,#header-outer #top nav > ul > li:not(.megamenu) ul a:hover,body[data-dropdown-style="minimal"] #header-secondary-outer ul >li:not(.megamenu) ul a:hover,#header-outer #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a,#header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a .sf-sub-indicator i,#header-outer:not([data-format="left-header"]) #top nav > ul > .megamenu ul ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #header-secondary-outer nav > ul > .megamenu ul ul .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a:hover,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a:focus,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li:hover > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul:hover > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-item.has-ul > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-ancestor.has-ul > a{color:#ffffff!important;}#top .sf-menu > li li > a:hover > .nectar-menu-icon,#top .sf-menu > li li.sfHover > a > .nectar-menu-icon,#top .sf-menu > li li.nectar-regular-menu-item[class*="current-"] > a > .nectar-menu-icon{color:#ffffff;}body #header-outer #top nav .sf-menu ul li > a .item_desc{color:#CCCCCC!important;}body #header-outer #top nav .sf-menu ul .sfHover > a .item_desc,body #header-outer #top nav .sf-menu ul li:hover > a .item_desc,body #header-outer #top nav .sf-menu ul .current-menu-item > a .item_desc,body #header-outer #top nav .sf-menu ul .current_page_item > a .item_desc,body #header-outer #top nav .sf-menu ul .current_page_ancestor > a .item_desc,body #header-outer nav > ul > .megamenu > ul ul li a:focus .item_desc{color:#ffffff!important;}body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > a,#header-outer[data-lhe="default"] nav .sf-menu .megamenu ul .current_page_ancestor > a,#header-outer[data-lhe="default"] nav .sf-menu .megamenu ul .current-menu-ancestor > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a{color:#ffffff!important;}body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li:hover > a,body:not([data-header-format="left-header"]) #header-outer #top nav > ul > .megamenu > ul > li:hover > a,body:not([data-header-format="left-header"]) #header-outer #header-secondary-outer nav > ul > .megamenu > ul > li:hover > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu > ul > .current-menu-ancestor.menu-item-has-children > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > .current-menu-item > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul:hover > a,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > .has-ul > a:focus,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-item.has-ul > a,#header-outer:not([data-format="left-header"]) nav > ul > .megamenu ul ul .current-menu-ancestor.has-ul > a{color:#ffffff!important;}.ascend #header-outer[data-transparent-header="true"][data-full-width="true"][data-remove-border="true"] #top nav ul #search-btn a:after,.ascend #header-outer[data-transparent-header="true"][data-full-width="true"][data-remove-border="true"] #top nav ul #nectar-user-account a:after,.ascend #header-outer[data-transparent-header="true"][data-full-width="true"][data-remove-border="true"] #top nav ul .slide-out-widget-area-toggle a:after,.ascend #header-outer[data-transparent-header="true"][data-full-width="true"][data-remove-border="true"] .cart-contents:after,body #header-outer[data-transparent-header="true"] #top nav ul #nectar-user-account > div,body[data-header-color="custom"] #top nav ul #nectar-user-account > div,#header-outer:not(.transparent) .sf-menu > li ul{border-color:#29aa6a;}#header-outer:not(.transparent) .sf-menu > li ul{border-top-width:1px;border-top-style:solid;}#header-secondary-outer,#header-outer #header-secondary-outer,body #header-outer #mobile-menu .secondary-header-text{background-color:#F8F8F8;}#header-secondary-outer nav > ul > li > a,#header-secondary-outer .nectar-center-text,#header-secondary-outer .nectar-center-text a,body #header-secondary-outer nav > ul > li > a .sf-sub-indicator i,#header-secondary-outer #social li a i,#header-secondary-outer[data-lhe="animated_underline"] nav > .sf-menu >li:hover >a,#header-outer #mobile-menu .secondary-header-text p{color:#666666;}#header-secondary-outer #social li a:hover i,#header-secondary-outer .nectar-center-text a:hover,#header-secondary-outer nav > ul > li:hover > a,#header-secondary-outer nav > ul > .current-menu-item > a,#header-secondary-outer nav > ul > .sfHover > a,#header-secondary-outer nav > ul > .sfHover > a .sf-sub-indicator i,#header-secondary-outer nav > ul > .current-menu-item > a .sf-sub-indicator i,#header-secondary-outer nav > ul > .current-menu-ancestor > a,#header-secondary-outer nav > ul > .current-menu-ancestor > a .sf-sub-indicator i,#header-secondary-outer nav > ul > li:hover > a .sf-sub-indicator i{color:#222222!important;}#header-secondary-outer[data-lhe="animated_underline"] nav > .sf-menu >li >a .menu-title-text:after{border-color:#222222!important;}#search-outer .ui-widget-content,body:not([data-header-format="left-header"]) #header-outer .sf-menu li ul,#header-outer nav > ul > .megamenu > .sub-menu,body #header-outer nav > ul > .megamenu > .sub-menu > li > a,#header-outer .widget_shopping_cart .cart_list a,#header-secondary-outer ul ul li a,#header-outer .widget_shopping_cart .cart_list li,.woocommerce .cart-notification,#header-outer .widget_shopping_cart_content{background-color:rgba(255,255,255,100)!important;}#slide-out-widget-area:not(.fullscreen-alt):not(.fullscreen),#slide-out-widget-area-bg.fullscreen,#slide-out-widget-area-bg.fullscreen-split,#slide-out-widget-area-bg.fullscreen-alt .bg-inner,body.material #slide-out-widget-area-bg.slide-out-from-right{background-color:#29aa6a;}body #slide-out-widget-area,body.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links a:hover i:before,body #slide-out-widget-area a,body #slide-out-widget-area.fullscreen-alt .inner .widget.widget_nav_menu li a,body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a,#slide-out-widget-area.fullscreen-split .inner .widget.widget_nav_menu li a,#slide-out-widget-area.fullscreen-split .inner .off-canvas-menu-container li a,body #slide-out-widget-area.fullscreen .menuwrapper li a,body #slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li a,body #slide-out-widget-area .slide_out_area_close .icon-default-style[class^="icon-"],body #slide-out-widget-area .nectar-menu-label{color:#ffffff;}body #slide-out-widget-area .nectar-menu-label:before{background-color:#ffffff;}#slide-out-widget-area .tagcloud a,body.material #slide-out-widget-area[class*="slide-out-from-right"] .off-canvas-menu-container li a:after,#slide-out-widget-area.fullscreen-split .inner .off-canvas-menu-container li a:after{border-color:#ffffff;}body #slide-out-widget-area h1,body #slide-out-widget-area h2,body #slide-out-widget-area h3,body #slide-out-widget-area h4,body #slide-out-widget-area h5,body #slide-out-widget-area h6{color:#ffffff;}body #slide-out-widget-area[class*="fullscreen"] .current-menu-item > a,body #slide-out-widget-area.fullscreen a:hover,body #slide-out-widget-area.fullscreen-split a:hover,body #slide-out-widget-area.fullscreen-split .off-canvas-menu-container .current-menu-item > a,#slide-out-widget-area.slide-out-from-right-hover a:hover,body.material #slide-out-widget-area.slide-out-from-right .off-canvas-social-links a i:after,body #slide-out-widget-area.slide-out-from-right a:hover,body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a:hover,#slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li a:hover,#slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li.current-menu-item a,#slide-out-widget-area.slide-out-from-right-hover.no-text-effect .inner .off-canvas-menu-container li a:hover,body #slide-out-widget-area .slide_out_area_close:hover .icon-default-style[class^="icon-"],body.material #slide-out-widget-area.slide-out-from-right .off-canvas-menu-container .current-menu-item > a,#slide-out-widget-area .widget .nectar_widget[class*="nectar_blog_posts_"] li:not(.has-img) a:hover .post-title{color:#ffffff!important;}body.material #slide-out-widget-area[class*="slide-out-from-right"] .off-canvas-menu-container li a:after,#slide-out-widget-area.fullscreen-split .inner .off-canvas-menu-container li a:after,#slide-out-widget-area .tagcloud a:hover{border-color:#ffffff;}#slide-out-widget-area.fullscreen-split .widget ul:not([class*="nectar_blog_posts"]) li > a:not(.tag-cloud-link):not(.nectar-button),#slide-out-widget-area.fullscreen-split .textwidget a:not(.nectar-button){background-image:linear-gradient(to right,#ffffff 0,#ffffff 100%);}#slide-out-widget-area ul .menu-item .nectar-ext-menu-item .menu-title-text{background-image:linear-gradient(to right,#ffffff 0,#ffffff 100%);}#mobile-menu ul .menu-item .nectar-ext-menu-item .menu-title-text{background-image:none;}body[data-slide-out-widget-area-style="slide-out-from-right"].material .slide_out_area_close:before{background-color:#ff1053;}@media only screen and (min-width:1000px){body[data-slide-out-widget-area-style="slide-out-from-right"].material .slide_out_area_close .close-line{background-color:#ffffff;}}#footer-outer,#nectar_fullscreen_rows > #footer-outer.wpb_row .full-page-inner-wrap{background-color:#ffffff!important;}#footer-outer #footer-widgets{border-bottom:none;}body.original #footer-outer #footer-widgets .col ul li{border-bottom:1px solid rgba(0,0,0,0.1);}.original #footer-outer #footer-widgets .col .widget_recent_comments ul li,#footer-outer #footer-widgets .col .widget_recent_comments ul li{background-color:rgba(0,0,0,0.07);border-bottom:0;}#footer-outer,#footer-outer a:not(.nectar-button){color:#2b2e34!important;}#footer-outer[data-link-hover="underline"][data-custom-color="true"] #footer-widgets ul:not([class*="nectar_blog_posts"]) a:not(.tag-cloud-link):not(.nectar-button),#footer-outer[data-link-hover="underline"] #footer-widgets .textwidget a:not(.nectar-button){background-image:linear-gradient(to right,#2b2e34 0,#2b2e34 100%);}#footer-outer #footer-widgets .widget h4,#footer-outer .col .widget_recent_entries span,#footer-outer .col .recent_posts_extra_widget .post-widget-text span{color:#0071aa!important;}#footer-outer #copyright,.ascend #footer-outer #copyright{border:none;background-color:#ffffff;}#footer-outer #copyright .widget h4,#footer-outer #copyright li a i,#footer-outer #copyright p{color:#2b2e34;}#footer-outer #copyright a:not(.nectar-button){color:#2b2e34!important;}#footer-outer[data-cols="1"] #copyright li a i:after{border-color:#2b2e34;}#footer-outer #copyright li a:hover i,#footer-outer[data-cols="1"] #copyright li a:hover i,#footer-outer[data-cols="1"] #copyright li a:hover i:after{border-color:#0071aa;color:#0071aa;}#footer-outer #copyright a:hover:not(.nectar-button){color:#0071aa!important;}body #call-to-action{background-color:#ECEBE9;}body #call-to-action span{color:#4B4F52;}body #slide-out-widget-area-bg{background-color:rgba(0,0,0,0.8);}.single-post #page-header-bg[data-post-hs="default_minimal"] .page-header-bg-image:after{background-color:#2d2d2d;opacity:0.4;}.single-post #page-header-bg[data-post-hs="default_minimal"]{background-color:#2d2d2d;}@media only screen and (min-width:1000px){#header-outer[data-format="centered-menu-bottom-bar"] #top .span_9 #logo{margin-top:-15px;}#header-outer[data-format="centered-menu-bottom-bar"] #top .span_9 nav >ul >li:not(#social-in-menu):not(#nectar-user-account):not(#search-btn):not(.slide-out-widget-area-toggle) > a{padding-bottom:30px;}#header-outer #logo,#header-outer .logo-spacing{margin-top:30px;margin-bottom:30px;position:relative;}#header-outer.small-nav #logo,#header-outer.small-nav .logo-spacing{margin-top:16.666666666667px;margin-bottom:16.666666666667px;}#header-outer.small-nav #logo img,#header-outer.small-nav .logo-spacing img{height:73px;}}@media only screen and (min-width:1000px){.material #header-outer:not(.transparent) .bg-color-stripe{top:183px;height:calc(35vh - 183px);}.material #header-outer:not(.transparent).small-nav .bg-color-stripe{top:106.33333333333px;height:calc(35vh - 106.33333333333px);}}@media only screen and (max-width:999px){.material #header-outer:not([data-permanent-transparent="1"]):not(.transparent) .bg-color-stripe,.material #header-outer:not([data-permanent-transparent="1"]).transparent .bg-color-stripe{top:64px;height:calc(30vh - 64px);}}#header-outer #logo img,#header-outer .logo-spacing img{height:123px;}#header-outer[data-lhe="animated_underline"] #top nav > ul > li > a,#top nav > ul > li[class*="button_solid_color"] > a,body #header-outer[data-lhe="default"] #top nav .sf-menu > li[class*="button_solid_color"] > a:hover,#header-outer[data-lhe="animated_underline"] #top nav > .sf-menu > li[class*="button_bordered"] > a,#top nav > ul > li[class*="button_bordered"] > a,body #header-outer.transparent #top nav > ul > li[class*="button_bordered"] > a,body #header-outer[data-lhe="default"] #top nav .sf-menu > li[class*="button_bordered"] > a:hover,body #header-outer.transparent #top nav > ul > li[class*="button_solid_color"] > a,#header-outer[data-lhe="animated_underline"] #top nav > ul > li[class*="button_solid_color"] > a{margin-left:20px;margin-right:20px;}#header-outer[data-lhe="default"] #top nav > ul > li > a,#header-outer .nectar-header-text-content,body[data-header-search="false"][data-full-width-header="false"] #header-outer[data-lhe="animated_underline"][data-format="default"][data-cart="false"] .nectar-header-text-content{padding-left:20px;padding-right:20px;}#header-outer[data-lhe="animated_underline"][data-condense="true"][data-format="centered-menu-bottom-bar"].fixed-menu #top nav > ul > li > a{margin-left:15px;margin-right:15px;}#header-outer[data-lhe="default"][data-condense="true"][data-format="centered-menu-bottom-bar"].fixed-menu #top nav > ul > li > a{padding-left:15px;padding-right:15px;}#top nav >ul >li >ul >li,#header-outer[data-format="centered-menu"] #top nav >ul >li >ul >li,#header-secondary-outer .sf-menu > li > ul > li,#header-outer .widget_shopping_cart .cart_list,#header-outer .widget_shopping_cart .total,#header-outer .widget_shopping_cart .buttons{-webkit-transform:translate3d(0,13px,0);transform:translate3d(0,13px,0);}body.material[data-header-format="default"] #header-outer[data-has-buttons="yes"]:not([data-format="left-header"]) #top nav >.buttons{margin-left:40px;}#header-outer nav ul li li:hover >a .sf-sub-indicator i,#header-outer nav ul li .sfHover >a .sf-sub-indicator i,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul .current-menu-ancestor >a .sf-sub-indicator i,#header-outer:not([data-format="left-header"]) nav >ul >.megamenu ul ul .current-menu-item >a,#header-outer:not([data-format="left-header"]) nav >ul >.megamenu ul ul .current-menu-ancestor >a,#header-outer nav > ul >.megamenu > ul ul .sfHover >a,#header-outer nav > ul >.megamenu > ul ul li a:hover,#header-outer nav > ul >.megamenu > ul ul li a:focus,body:not([data-header-format="left-header"]) #header-outer nav >ul >.megamenu >ul ul .current-menu-item > a,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul a:hover,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) .sfHover >a,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul .current-menu-item >a,#header-outer:not([data-format="left-header"]) #top nav >ul >li:not(.megamenu) ul .current-menu-ancestor >a,body[data-dropdown-style="minimal"] #header-secondary-outer ul >li:not(.megamenu) .sfHover >a,body[data-dropdown-style="minimal"] #header-secondary-outer ul >li:not(.megamenu) ul a:hover{color:#fff}body:not([data-header-format="left-header"]) #header-outer nav >ul >.megamenu >ul ul li a:hover,body:not([data-header-format="left-header"]) #header-outer nav >ul >.megamenu >ul ul .current-menu-item > a{color:#fff;background-color:#000}#slide-out-widget-area .nectar-ext-menu-item .menu-title-text{background-image:none!important;}#header-space{height:259px;}@media only screen and (max-width:999px){#header-space{height:64px;}}@media only screen and (max-width:999px){.using-mobile-browser #page-header-wrap.fullscreen-header,.using-mobile-browser #page-header-wrap.fullscreen-header #page-header-bg,.using-mobile-browser #nectar_fullscreen_rows:not(.afterLoaded):not([data-mobile-disable="on"]) > div{height:calc(100vh - 116px);}.using-mobile-browser .wpb_row.vc_row-o-full-height.top-level,.using-mobile-browser .wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 116px);}#page-header-wrap.fullscreen-header,#page-header-wrap.fullscreen-header #page-header-bg,html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header,.nectar_fullscreen_zoom_recent_projects,.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container,#nectar_fullscreen_rows:not(.afterLoaded):not([data-mobile-disable="on"]) > div{height:calc(100vh - 63px);}.wpb_row.vc_row-o-full-height.top-level,.wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 63px);}[data-bg-header="true"][data-permanent-transparent="1"] #page-header-wrap.fullscreen-header,[data-bg-header="true"][data-permanent-transparent="1"] #page-header-wrap.fullscreen-header #page-header-bg,html:not(.nectar-box-roll-loaded) [data-bg-header="true"][data-permanent-transparent="1"] .nectar-box-roll > #page-header-bg.fullscreen-header,[data-bg-header="true"][data-permanent-transparent="1"] .nectar_fullscreen_zoom_recent_projects,[data-permanent-transparent="1"] .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),[data-permanent-transparent="1"] .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container{height:100vh;}[data-permanent-transparent="1"] .wpb_row.vc_row-o-full-height.top-level,[data-permanent-transparent="1"] .wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:100vh;}body[data-transparent-header="false"] #ajax-content-wrap.no-scroll{min-height:calc(100vh - 63px);height:calc(100vh - 63px);}}#header-outer #logo .mobile-only-logo,#header-outer[data-format="centered-menu-bottom-bar"][data-condense="true"] .span_9 #logo img{height:40px;}@media only screen and (max-width:999px){body #top #logo img,#header-outer[data-permanent-transparent="false"] #logo .dark-version{height:40px!important;}}#header-outer #social-in-menu .fa-twitter:after,.material #slide-out-widget-area.slide-out-from-right .fa-twitter:after{content:"\f099"}#header-outer #social-in-menu .fa-facebook:after,.material #slide-out-widget-area.slide-out-from-right .fa-facebook:after{content:"\f09a"}#header-outer #social-in-menu .fa-linkedin:after,.material #slide-out-widget-area.slide-out-from-right .fa-linkedin:after{content:"\f0e1"}#header-outer #social-in-menu .fa-youtube-play:after,.material #slide-out-widget-area.slide-out-from-right .fa-youtube-play:after{content:"\f16a"}#header-outer #social-in-menu .fa-rss:after,.material #slide-out-widget-area.slide-out-from-right .fa-rss:after{content:"\f09e"}#header-outer #social-in-menu .fa-phone:after,.material #slide-out-widget-area.slide-out-from-right .fa-phone:after{content:"\f095"}#header-outer #social-in-menu .fa-envelope:after,.material #slide-out-widget-area.slide-out-from-right .fa-envelope:after{content:"\f0e0"}.off-canvas-menu-container .nectar-menu-icon,.off-canvas-menu-container .nectar-menu-icon-img,#header-outer #mobile-menu .nectar-menu-icon,#header-outer #mobile-menu .nectar-menu-icon-img{display:none;}@media only screen and (min-width:1000px){body.ascend #search-outer #search #search-box input[type="text"]{font-size:48px;line-height:1;}}.nectar-skip-to-content:focus{position:fixed;left:6px;top:7px;height:auto;width:auto;display:block;font-size:14px;font-weight:600;padding:15px 23px 14px;background:#f1f1f1;z-index:100000;line-height:normal;text-decoration:none;box-shadow:0 0 2px 2px rgba(0,0,0,.6);}#header-outer[data-lhe="animated_underline"] li > a .menu-title-text{position:relative;}#header-outer[data-lhe="animated_underline"] nav > ul >li:not([class*="button_"]) > a .menu-title-text:after,#header-secondary-outer[data-lhe="animated_underline"] nav >.sf-menu >li >a .menu-title-text:after{-webkit-transition:-webkit-transform .3s ease-out,border-color .3s ease-out;transition:transform .3s ease-out,border-color .3s ease-out;position:absolute;display:block;bottom:-6px;left:0;width:100%;-ms-transform:scaleX(0);-webkit-transform:scaleX(0);transform:scaleX(0);border-top:2px solid #000;content:"";padding-bottom:inherit}#header-outer[data-lhe="animated_underline"] #top nav >ul >li >a:hover .menu-title-text:after,#header-outer[data-lhe="animated_underline"] #top nav >ul >.sfHover >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current_page_ancestor >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current-menu-ancestor >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current-menu-item >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .sf-menu .current_page_item >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .buttons .current-menu-item >a .menu-title-text:after,#header-outer[data-lhe="animated_underline"] .buttons .current-menu-ancestor >a .menu-title-text:after,#header-secondary-outer[data-lhe="animated_underline"] nav >.sf-menu >li >a .menu-title-text:hover:after,#header-secondary-outer[data-lhe="animated_underline"] nav >.sf-menu >li >a:focus .menu-title-text:after{backface-visibility:hidden;-webkit-transform:scaleX(1);transform:scaleX(1)}body[data-header-inherit-rc="true"] #header-outer[data-lhe="animated_underline"].light-text #top nav >ul >li:not([class*="button_"]) >a .menu-title-text:after{border-color:#fff;}#header-outer[data-lhe="animated_underline"].transparent.dark-slide #top nav >ul >li >a .menu-title-text:after{border-color:#000!important;}@media only screen and (min-width:1000px) and (max-width:1300px){.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content h2,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content h2,.full-width-content .vc_span12 .swiper-slide .content h2{font-size:45px!important;line-height:51px!important;}.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content p,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content p,.full-width-content .vc_span12 .swiper-slide .content p{font-size:18px!important;line-height:31.2px!important;}}@media only screen and (min-width :690px) and (max-width :999px){.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content h2,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content h2,.full-width-content .vc_span12 .swiper-slide .content h2{font-size:33px!important;line-height:39px!important;}.nectar-slider-wrap[data-full-width="true"] .swiper-slide .content p,.nectar-slider-wrap[data-full-width="boxed-full-width"] .swiper-slide .content p,.full-width-content .vc_span12 .swiper-slide .content p{font-size:13.2px!important;line-height:24px!important;}}@media only screen and (max-width :690px){.nectar-slider-wrap[data-full-width="true"][data-fullscreen="false"] .swiper-slide .content h2,.full-width-content .vc_col-sm-12 .nectar-slider-wrap[data-fullscreen="false"] .swiper-slide .content h2,.nectar-slider-wrap[data-full-width="boxed-full-width"][data-fullscreen="false"] .swiper-slide .content h2,.full-width-content .vc_span12 .nectar-slider-wrap[data-fullscreen="false"] .swiper-slide .content h2{font-size:15px!important;line-height:21px!important;}.nectar-slider-wrap[data-full-width="true"][data-fullscreen="false"] .swiper-slide .content p,.nectar-slider-wrap[data-full-width="boxed-full-width"][data-fullscreen="false"] .swiper-slide .content p,.full-width-content .vc_span12 .nectar-slider-wrap[data-fullscreen="false"] .swiper-slide .content p{font-size:10px!important;line-height:17.52px!important;}}@media only screen and (min-width:1000px){.container,body[data-header-format="left-header"] .container,.woocommerce-tabs .full-width-content .tab-container,.nectar-recent-posts-slider .flickity-page-dots,.post-area.standard-minimal.full-width-content .post .inner-wrap,.material #search-outer #search{max-width:1425px;width:100%;margin:0 auto;padding:0 90px;}body .container .page-submenu.stuck .container:not(.tab-container):not(.normal-container),.nectar-recent-posts-slider .flickity-page-dots,#nectar_fullscreen_rows[data-footer="default"] #footer-widgets .container,#nectar_fullscreen_rows[data-footer="default"] #copyright .container{padding:0 90px!important;}.swiper-slide .content{padding:0 90px;}body .container .container:not(.tab-container):not(.recent-post-container):not(.normal-container){width:100%!important;padding:0!important;}body .carousel-heading .container .carousel-next{right:10px;}body .carousel-heading .container .carousel-prev{right:35px;}.carousel-wrap[data-full-width="true"] .carousel-heading .portfolio-page-link{left:90px;}.carousel-wrap[data-full-width="true"] .carousel-heading{margin-left:-20px;margin-right:-20px;}#ajax-content-wrap .carousel-wrap[data-full-width="true"] .carousel-next{right:90px;}#ajax-content-wrap .carousel-wrap[data-full-width="true"] .carousel-prev{right:115px;}.carousel-wrap[data-full-width="true"]{padding:0;}.carousel-wrap[data-full-width="true"] .caroufredsel_wrapper{padding:20px;}#search-outer #search #close a{right:90px;}body.material #search-outer #search #close{right:90px;}body.material #search-outer #search #close a{right:12px;}}@media only screen and (min-width:1000px){.container,body[data-header-format="left-header"] .container,.woocommerce-tabs .full-width-content .tab-container,.nectar-recent-posts-slider .flickity-page-dots,.post-area.standard-minimal.full-width-content .post .inner-wrap,.material #search-outer #search{max-width:1425px;}}span.wpcf7-not-valid-tip,.woocommerce input#coupon_code,body[data-fancy-form-rcs="1"] .select2-container,body[data-fancy-form-rcs="1"] .select2-drop,body[data-fancy-form-rcs="1"] .select2-search,.select2-search input,body[data-form-style="minimal"] .container-wrap .span_12.light input[type="email"]{font-size:14px;}.container-wrap input[type=text],.container-wrap input[type=email],.container-wrap input[type=password],.container-wrap input[type=tel],.container-wrap input[type=url],.container-wrap input[type=search],.container-wrap input[type=date],.container-wrap textarea,.container-wrap select,body > #review_form_wrapper.modal input[type=text],body > #review_form_wrapper.modal textarea,body > #review_form_wrapper.modal select,body > #review_form_wrapper.modal input[type=email],.select2-container--default .select2-selection--single,body[data-fancy-form-rcs="1"] .select2-container--default .select2-selection--single,.woocommerce input#coupon_code,.material.woocommerce-page[data-form-style="default"] input#coupon_code,body[data-form-style="minimal"] input[type="text"],body[data-form-style="minimal"] textarea,body[data-form-style="minimal"] input[type="email"],body[data-form-style="minimal"] input[type=password],body[data-form-style="minimal"] input[type=tel],body[data-form-style="minimal"] input[type=url],body[data-form-style="minimal"] input[type=search],body[data-form-style="minimal"] input[type=date],body[data-form-style="minimal"] select{font-size:14px;}.portfolio-loading,#ajax-loading-screen .loading-icon,.loading-icon,.pp_loaderIcon{background-image:url("");}#ajax-loading-screen .reveal-1{background-color:#ffffff;}#ajax-loading-screen .reveal-2{background-color:#131314;}.loading-icon .material-icon .bar:after{background-color:#000000;}.loading-icon .material-icon .bar{border-color:#000000;}.loading-icon .material-icon .color-2 .bar:after{background-color:#000000;}.loading-icon .material-icon .color-2 .bar{border-color:#000000;}.loading-icon .material-icon .spinner.color-2{display:none!important;}.loading-icon .material-icon > div:first-child .right-side,.loading-icon .material-icon > div:first-child .left-side{-webkit-animation:none!important;animation:none!important;}@media only screen and (min-width:1000px){#page-header-wrap #page-header-bg[data-animate-in-effect="zoom-out"] .page-header-bg-image-wrap,#page-header-wrap #page-header-bg[data-animate-in-effect="zoom-out"] .nectar-video-wrap,.top-level .nectar-slider-wrap[data-animate-in-effect="zoom-out"]:not([data-bg-animation="ken_burns"]) .slide-bg-wrap,.nectar-recent-posts-slider[data-animate-in-effect="zoom-out"] .nectar-recent-posts-slider-inner:not(.loaded) .nectar-recent-post-bg,body[data-aie="zoom-out"] .nectar-recent-posts-single_featured .nectar-recent-post-bg,body[data-aie="zoom-out"] .parallax_section .nectar-recent-post-slide .nectar-recent-post-bg{-webkit-transform:scale(1.11) translateZ(0);transform:scale(1.11) translateZ(0);-webkit-transition:0.95s 0s cubic-bezier(0.3,0.58,0.42,0.9);transition:0.95s 0s cubic-bezier(0.3,0.58,0.42,0.9)}}@media only screen and (min-width:1000px){body[data-ajax-transitions="true"][data-apte="center_mask_reveal"]:not(.using-mobile-browser) #page-header-bg[data-animate-in-effect="zoom-out"] .nectar-video-wrap video{opacity:1}}body[data-apte*="horizontal_swipe"] #page-header-wrap #page-header-bg[data-animate-in-effect="zoom-out"] .page-header-bg-image-wrap,body[data-apte*="horizontal_swipe"] #page-header-wrap #page-header-bg[data-animate-in-effect="zoom-out"] .nectar-video-wrap,body[data-apte*="horizontal_swipe"][data-aie="zoom-out"] .nectar-recent-posts-single_featured .nectar-recent-post-bg{-webkit-transition:1.25s 0s cubic-bezier(0.3,0.58,0.42,0.9);transition:1.25s 0s cubic-bezier(0.3,0.58,0.42,0.9)}body[data-ajax-transitions="true"] #page-header-wrap #page-header-bg[data-animate-in-effect="zoom-out"] .nectar-video-wrap{-webkit-transition:transform 0.95s 0s cubic-bezier(0.3,0.58,0.42,0.9);transition:transform 0.95s 0s cubic-bezier(0.3,0.58,0.42,0.9)}#page-header-wrap #page-header-bg[data-animate-in-effect="zoom-out"].loaded .page-header-bg-image-wrap,#page-header-wrap #page-header-bg[data-animate-in-effect="zoom-out"].loaded .nectar-video-wrap,.top-level .nectar-slider-wrap[data-animate-in-effect="zoom-out"]:not([data-bg-animation="ken_burns"]).loaded .slide-bg-wrap,.nectar-recent-posts-slider[data-animate-in-effect="zoom-out"].loaded .nectar-recent-post-bg,.js_active body[data-aie="zoom-out"] .nectar-recent-posts-single_featured .nectar-recent-post-bg{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0)}@media only screen and (min-width:1000px){body[data-aie="zoom-out"] .first-section .row-bg-wrap .inner-wrap,body[data-aie="zoom-out"] .top-level .row-bg-wrap .inner-wrap,body[data-aie="zoom-out"] .first-section .project-slide .bg-inner-wrap{-webkit-transform:scale(1.11) translateZ(0);transform:scale(1.11) translateZ(0)}}body[data-aie="zoom-out"] .first-section.loaded .row-bg-wrap .inner-wrap,body[data-aie="zoom-out"] .top-level.loaded .row-bg-wrap .inner-wrap,body[data-aie="zoom-out"] .first-section.loaded .project-slide .bg-inner-wrap{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0);-webkit-transition:transform 0.95s 0s cubic-bezier(0.3,0.58,0.42,0.9);transition:transform 0.95s 0s cubic-bezier(0.3,0.58,0.42,0.9)}body[data-aie="zoom-out"] #nectar_fullscreen_rows[data-row-bg-animation="ken_burns"] .first-section .row-bg-wrap .inner-wrap{-webkit-transform:none;transform:none;}@media only screen and (min-width :1px) and (max-width :999px){body:not([data-m-animate="1"]) .wpb_animate_when_almost_visible,body:not([data-m-animate="1"]) .wpb_animate_when_almost_visible.wpb_start_animation{opacity:1;-webkit-animation:none;-o-animation:none;animation:none;}body:not([data-m-animate="1"]) .clients.no-carousel.fade-in-animation > div{opacity:1;}img.img-with-animation[data-animation="fade-in-from-left"],.col.has-animation[data-animation="fade-in-from-left"],.wpb_column.has-animation[data-animation="fade-in-from-left"],.nectar-fancy-box.has-animation[data-animation="fade-in-from-left"],img.img-with-animation[data-animation="fade-in-from-right"],.col.has-animation[data-animation="fade-in-from-right"],.wpb_column.has-animation[data-animation="fade-in-from-right"],.nectar-fancy-box.has-animation[data-animation="fade-in-from-right"],.divider-border[data-animate="yes"],.divider-small-border[data-animate="yes"],.col.has-animation[data-animation="fade-in-from-bottom"],.wpb_column.has-animation[data-animation="fade-in-from-bottom"],.nectar-fancy-box.has-animation[data-animation="fade-in-from-bottom"],img.img-with-animation[data-animation="grow-in"],.col.has-animation[data-animation="grow-in"],.wpb_column.has-animation[data-animation="grow-in"],.nectar-fancy-box.has-animation[data-animation="grow-in"],img.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.nectar-fancy-box.has-animation[data-animation="flip-in"],img.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="slight-twist"],.nectar-fancy-box.has-animation[data-animation="flip-in-vertical"],.img-with-aniamtion-wrap[data-animation="flip-in-vertical"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="flip-in"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="fade-in-from-bottom"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="fade-in-from-right"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="fade-in-from-left"] .hover-wrap,.img-with-aniamtion-wrap[data-animation="grow-in"] .hover-wrap,.nectar-split-heading .heading-line > div,.nectar-split-heading span > .inner,.nectar-split-heading[data-animation-type="twist-in"],.nectar_food_menu_item .item_description,.nectar_food_menu_item .inner,.col.has-animation[data-animation="zoom-out"],.col.has-animation[data-animation="zoom-out-high"],.nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,.column-bg-overlay-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation="zoom-out-reveal"] .inner-wrap,.column-image-bg-wrap[data-bg-animation*="reveal-from-"],.column-image-bg-wrap[data-bg-animation*="reveal-from-"] .inner-wrap,.column-image-bg-wrap[data-bg-animation*="reveal-from-"] .inner-wrap .column-image-bg,.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"],.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"] > div,.img-with-aniamtion-wrap[data-animation*="reveal-from-"] img.img-with-animation,.img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner,.img-with-aniamtion-wrap[data-animation*="reveal-from-"],.nectar-rotating-words-title.element_stagger_words .text-wrap > span{transform:none!important;-webkit-transform:none!important;}.clients.fade-in-animation > div,img.img-with-animation,.img-with-aniamtion-wrap .hover-wrap,.col.has-animation,.wpb_column.has-animation,.nectar-fancy-box.has-animation,img.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.nectar-fancy-box.has-animation[data-animation="flip-in"],img.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"],.nectar-fancy-box.has-animation[data-animation="flip-in-vertical"],.nectar_food_menu_item .item_description,.nectar_food_menu_item .inner,.nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,.nectar-fancy-ul[data-animation="true"] ul li,.nectar-split-heading[data-animation-type="twist-in"],.column-bg-overlay-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation="zoom-out-reveal"],.column-image-bg-wrap[data-bg-animation*="reveal-from-"] .inner-wrap,.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"],.column-bg-overlay-wrap[data-bg-animation*="reveal-from-"] > div,.img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner{opacity:1!important;}body:not([data-m-animate="1"]) .span_12.flip-in-vertical-wrap{-webkit-perspective:none;perspective:none;}.nectar_cascading_images .cascading-image .inner-wrap,.nectar-icon-list[data-animate="true"] .content,.nectar-icon-list[data-animate="true"] .nectar-icon-list-item .list-icon-holder,.nectar-icon-list[data-animate="true"]:after,.nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap,.nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap *,.nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner:after,.nectar-animated-title[data-style="hinge-drop"] .nectar-animated-title-inner,.nectar-woo-flickity[data-animation*="fade-in"] ul.products .flickity-cell{transform:none!important;-webkit-transform:none!important;opacity:1!important;animation:none!important;}}@media only screen and (min-device-width:481px) and (max-device-width:1025px) and (orientation:landscape){.col.has-animation[data-animation="fade-in-from-left"],.wpb_column.has-animation[data-animation="fade-in-from-left"],.img-with-animation[data-animation="fade-in-from-right"],.img-with-animation[data-animation="fade-in-from-left"],.divider-border[data-animate="yes"],.divider-small-border[data-animate="yes"],.img-with-animation[data-animation="grow-in"],.col.has-animation[data-animation="grow-in"],.wpb_column.has-animation[data-animation="grow-in"],.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="slight-twist"],.col.has-animation[data-animation="fade-in-from-bottom"],.wpb_column.has-animation[data-animation="fade-in-from-bottom"]{transform:none!important;-webkit-transform:none!important;}.clients.fade-in-animation > div,.img-with-animation,.col.has-animation,.wpb_column.has-animation,.img-with-animation[data-animation="flip-in"],.col.has-animation[data-animation="flip-in"],.wpb_column.has-animation[data-animation="flip-in"],.img-with-animation[data-animation="flip-in-vertical"],.col.has-animation[data-animation="flip-in-vertical"],.wpb_column.has-animation[data-animation="flip-in-vertical"]{opacity:1!important;}body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner-wrap,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner,body:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner{transform:none;-webkit-transform:none;}}@media only screen and (max-device-width:2600px){body.using-mobile-browser .col.has-animation[data-animation="fade-in-from-left"],body.using-mobile-browser .wpb_column.has-animation[data-animation="fade-in-from-left"],body.using-mobile-browser .img-with-animation[data-animation="fade-in-from-right"],body.using-mobile-browser .img-with-animation[data-animation="fade-in-from-left"],body.using-mobile-browser .col.has-animation[data-animation="fade-in-from-bottom"],body.using-mobile-browser .wpb_column.has-animation[data-animation="fade-in-from-bottom"],body.using-mobile-browser .img-with-animation[data-animation="grow-in"],body.using-mobile-browser .col.has-animation[data-animation="grow-in"],body.using-mobile-browser .wpb_column.has-animation[data-animation="grow-in"],body.using-mobile-browser .divider-border[data-animate="yes"],body.using-mobile-browser .divider-small-border[data-animate="yes"],body.using-mobile-browser .img-with-aniamtion-wrap .hover-wrap,body.using-mobile-browser .img-with-animation[data-animation="flip-in"],body.using-mobile-browser .col.has-animation[data-animation="flip-in"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in"],body.using-mobile-browser .img-with-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .col.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .wpb_column.has-animation[data-animation*="reveal-from"] > .vc_column-inner,body.using-mobile-browser .nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,body.using-mobile-browser .nectar_cascading_images .cascading-image .inner-wrap,body.using-mobile-browser .nectar-split-heading[data-animation-type="twist-in"],body.using-mobile-browser .nectar-split-heading span > .inner,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .content,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .nectar-icon-list-item .list-icon-holder,body.using-mobile-browser .nectar-icon-list[data-animate="true"]:after,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap *,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner:after,body.using-mobile-browser .nectar-animated-title[data-style="hinge-drop"] .nectar-animated-title-inner,body.using-mobile-browser .nectar-fancy-box.has-animation,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"] img.img-with-animation,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"],body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .post-heading span,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .meta-date,body.using-mobile-browser .nectar-woo-flickity[data-animation*="fade-in"] ul.products .flickity-cell,body.using-mobile-browser .nectar-rotating-words-title.element_stagger_words .text-wrap > span{transform:none!important;-webkit-transform:none!important;}body.using-mobile-browser .clients.fade-in-animation > div,body.using-mobile-browser .img-with-animation,body.using-mobile-browser .img-with-aniamtion-wrap .hover-wrap,body.using-mobile-browser .col.has-animation,body.using-mobile-browser .wpb_column.has-animation,body.using-mobile-browser .nectar_image_with_hotspots[data-animation="true"] .nectar_hotspot_wrap,body.using-mobile-browser .img-with-animation[data-animation="flip-in"],body.using-mobile-browser .col.has-animation[data-animation="flip-in"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in"],body.using-mobile-browser .img-with-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .col.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .wpb_column.has-animation[data-animation="flip-in-vertical"],body.using-mobile-browser .nectar-fancy-box.has-animation,body.using-mobile-browser .nectar-split-heading[data-animation-type="twist-in"],body.using-mobile-browser .nectar-split-heading span > .inner,body.using-mobile-browser .img-with-aniamtion-wrap[data-animation*="reveal-from-"] .inner,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .post-heading span,body.using-mobile-browser .nectar-post-grid:not([data-animation="none"]) .nectar-post-grid-item .meta-date,body.using-mobile-browser .nectar-woo-flickity[data-animation*="fade-in"] ul.products .flickity-cell{opacity:1!important;}body.using-mobile-browser .divider-border[data-animate="yes"],body.using-mobile-browser .divider-small-border[data-animate="yes"]{visibility:visible!important;}body.using-mobile-browser .nectar_cascading_images .cascading-image .inner-wrap,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .content,body.using-mobile-browser .nectar-icon-list[data-animate="true"] .nectar-icon-list-item .list-icon-holder,body.using-mobile-browser .nectar-icon-list[data-animate="true"]:after,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner .wrap *,body.using-mobile-browser .nectar-animated-title[data-style="color-strip-reveal"] .nectar-animated-title-inner:after,body.using-mobile-browser .nectar-animated-title[data-style="hinge-drop"] .nectar-animated-title-inner{opacity:1!important;animation:none!important;}body.using-mobile-browser:not([data-m-animate="1"]) .wpb_animate_when_almost_visible,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_animate_when_almost_visible.wpb_start_animation{opacity:1;-webkit-animation:none;-o-animation:none;animation:none;}body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner-wrap,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-bottom"] .column-inner,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-top"] .column-inner,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-left"] .column-inner,body.using-mobile-browser:not([data-m-animate="1"]) .wpb_column.has-animation[data-animation="reveal-from-right"] .column-inner{transform:none;-webkit-transform:none;}body.using-mobile-browser:not([data-m-animate="1"]) .nectar-split-heading .heading-line > div{transform:none;-webkit-transform:none;}body.using-mobile-browser:not([data-m-animate="1"]) .nectar-milestone:not(.animated-in){opacity:1;}}#footer-outer #copyright[data-layout="centered"] .col,#footer-outer #copyright[data-layout="centered"] .col ul{width:100%;float:none;}#footer-outer #copyright[data-layout="centered"] .col .social li{margin-top:25px;}#footer-outer:not([data-cols="1"]) #copyright[data-layout="centered"] .social li a{height:30px;width:30px;line-height:30px;}#footer-outer #copyright[data-layout="centered"]{padding:45px 0;}#footer-outer #copyright[data-layout="centered"] li{float:none;display:inline-block;margin:0 10px;width:auto;}@media only screen and (min-width:1000px){#footer-outer #copyright[data-layout="centered"] .col.span_5{max-width:70%;margin:0 auto;}}@media only screen and (max-width:999px){#footer-outer #copyright[data-layout="centered"] .col.span_5{margin-bottom:0;}}#footer-outer #copyright[data-layout="centered"] .widget{margin-bottom:0;}#footer-outer #copyright[data-layout="centered"] .widget_nav_menu li,#footer-outer #copyright[data-layout="centered"] .widget_pages li{vertical-align:top;text-align:left;margin:0 15px;}#footer-outer #copyright[data-layout="centered"] .widget_nav_menu li ul,#footer-outer #copyright[data-layout="centered"] .widget_pages li ul{padding-left:0;margin-left:0;}#footer-outer #copyright[data-layout="centered"] .widget_nav_menu li ul li,#footer-outer #copyright[data-layout="centered"] .widget_pages li ul li{display:block;margin-left:0;}#footer-outer #copyright[data-layout="centered"] .widget [data-style="minimal-counter"] > li::before,#footer-outer #copyright[data-layout="centered"] .widget .arrow-circle{display:none;}#footer-outer #copyright[data-layout="centered"] .widget_search{margin:20px 0;}#footer-outer #copyright[data-layout="centered"] .col{text-align:center;}#to-top{display:block;position:fixed;text-align:center;line-height:12px;right:17px;bottom:0;transform:translateY(105%);color:#fff;cursor:pointer;border-radius:2px;-webkit-border-radius:2px;z-index:9994;height:29px;width:29px;background-color:rgba(0,0,0,0.25);background-repeat:no-repeat;background-position:center;transition:background-color 0.1s linear;-webkit-transition:background-color 0.1s linear;}body[data-button-style*="rounded"] #to-top{transition:box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.1s linear;-webkit-transition:-webkit-box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.1s linear;background-color:rgba(0,0,0,0.25)}body[data-button-style*="rounded"] #to-top:hover,body[data-button-style*="rounded"] #to-top.dark:hover{transition:box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.05s linear 0.25s;-webkit-transition:-webkit-box-shadow 0.3s cubic-bezier(.55,0,.1,1),background-color 0.05s linear 0.25s;box-shadow:1px 2px 3px rgba(0,0,0,0.16);background-color:transparent!important}body[data-button-style*="rounded"] #to-top:after,body[data-button-style*="rounded"] #to-top:before{display:block;content:" ";height:100%;width:100%;position:absolute;top:0;left:0;z-index:1;background-color:#000;transform:scale(0);-webkit-transform:scale(0);transition:all 0.3s cubic-bezier(.55,0,.1,1);-webkit-transition:all 0.3s cubic-bezier(.55,0,.1,1);border-radius:100px;-webkit-border-radius:100px}body[data-button-style*="rounded"] #to-top:before{background-color:rgba(255,255,255,0.25);transform:scale(1);-webkit-transform:scale(1);transition:all 0.5s cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:all 0.5s cubic-bezier(0.165,0.84,0.44,1);opacity:0;z-index:2}body[data-button-style*="rounded"] #to-top:hover:after{transform:scale(1);-webkit-transform:scale(1);}body[data-button-style*="rounded"] #to-top{overflow:hidden}body[data-button-style*="rounded"] #to-top i.fa-angle-up.top-icon,body[data-button-style*="rounded"] #to-top i.fa-angle-up{-webkit-transform:translate(0,0px);transform:translate(0,0px);transition:transform 0.2s ease;-webkit-transition:transform 0.2s ease;}body[data-button-style*="rounded"] #to-top:hover i.fa-angle-up.top-icon,body[data-button-style*="rounded"] #to-top:hover i.fa-angle-up,body[data-button-style*="rounded"] #to-top.hovered i.fa-angle-up.top-icon,body[data-button-style*="rounded"] #to-top.hovered i.fa-angle-up{-webkit-transform:translate(0,-29px);transform:translate(0,-29px)}body[data-button-style*="rounded"] #to-top:active:before{opacity:1}#to-top i{line-height:29px;width:29px;height:29px;font-size:14px;top:0;left:0;text-align:center;position:relative;z-index:10;background-color:transparent}#to-top:hover,#to-top.dark:hover{background-color:#000}#to-top.dark{background-color:rgba(0,0,0,0.87)}body[data-button-style*="slightly_rounded"] #to-top{border-radius:200px!important;-webkit-border-radius:200px!important;}body,.toggle h3 a,body .ui-widget,table,select,.bar_graph li span strong,#slide-out-widget-area .tagcloud a,body .container .woocommerce-message a.button,#search-results .result .title span,.woocommerce ul.products li.product h3,.woocommerce-page ul.products li.product h3,.row .col.section-title .nectar-love span,body .nectar-love span,body .nectar-social .nectar-love .nectar-love-count,body .carousel-heading h2,.sharing-default-minimal .nectar-social .social-text,body .sharing-default-minimal .nectar-love,.widget ul.nectar_widget[class*="nectar_blog_posts_"] > li .post-date,.single [data-post-hs="default_minimal"] #single-below-header span,.single .heading-title[data-header-style="default_minimal"] #single-below-header span,#header-outer .nectar-image-link-widget .image-link-content span,#slide-out-widget-area.fullscreen .nectar-image-link-widget .image-link-content span,#slide-out-widget-area.fullscreen-alt .nectar-image-link-widget .image-link-content span,.nectar-header-text-content,#slide-out-widget-area .nectar-ext-menu-item .menu-item-desc,.woocommerce-checkout-review-order-table .product-info .product-quantity,#ajax-content-wrap .nectar-shop-header-bottom .widget_layered_nav_filters ul li a{font-family:PT Sans;font-size:16px;line-height:30px;font-weight:400;}.bold,strong,b{font-family:PT Sans;font-weight:600;}.single #single-below-header span{font-family:PT Sans;}.nectar-fancy-ul ul li .icon-default-style[class^="icon-"]{line-height:30px;}#ajax-content-wrap .nectar-shop-header-bottom .widget_layered_nav_filters ul li a,.nectar-shop-header-bottom .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered,body[data-fancy-form-rcs="1"] .nectar-shop-header-bottom .woocommerce-ordering select{font-weight:400!important;}.nectar-shop-header-bottom .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered,body[data-fancy-form-rcs="1"] .nectar-shop-header-bottom .woocommerce-ordering select{font-family:PT Sans!important;}@media only screen and (max-width:1300px) and (min-width:1000px){body{font-size:16px;line-height:30px;}}@media only screen and (max-width:999px) and (min-width:690px){body{font-size:16px;line-height:30px;}}@media only screen and (max-width:690px){body{font-size:16px;line-height:30px;}}#header-outer #logo.no-image,#header-outer[data-format="centered-menu"] .logo-spacing[data-using-image="false"],#header-outer[data-format="centered-logo-between-menu"] .logo-spacing[data-using-image="false"]{font-family:PT Sans;}#top nav > ul > li > a,.span_3 .pull-left-wrap > ul > li > a,body.material #search-outer #search input[type="text"],#top nav ul .slide-out-widget-area-toggle a i.label,#top .span_9 > .slide-out-widget-area-toggle a.using-label .label,#header-secondary-outer .nectar-center-text,#slide-out-widget-area .secondary-header-text,#header-outer #mobile-menu ul li a,#header-outer #mobile-menu .secondary-header-text{font-family:PT Sans;text-transform:none;letter-spacing:0;font-size:17px;line-height:22px;}#top nav > ul > li[class*="button_solid_color"] > a:before,#header-outer.transparent #top nav > ul > li[class*="button_solid_color"] > a:before,#header-outer #top .slide-out-widget-area-toggle[data-custom-color="true"] a:before{height:28px;}#top nav > ul > li[class*="button_bordered"] > a:before,#header-outer.transparent #top nav > ul > li[class*="button_bordered"] > a:before{height:38px;}.material .sf-menu > li > a > .sf-sub-indicator [class^="icon-"]{font-size:18px;}#top .sf-menu li ul li a,#header-secondary-outer nav > ul > li > a,#header-secondary-outer .sf-menu li ul li a,#header-secondary-outer ul ul li a,#header-outer .widget_shopping_cart .cart_list a,.nectar-slide-in-cart.style_slide_in_click .close-cart{font-family:PT Sans;font-size:16px;line-height:22px;}@media only screen and (min-width :1px) and (max-width :999px){#top .sf-menu a{font-family:PT Sans!important;font-size:14px!important;}}#page-header-bg h1,body h1,body .row .col.section-title h1,.full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2,body #error-404 h1,[data-inherit-heading-family="h1"]{font-family:PT Sans;text-transform:none;letter-spacing:0;font-size:35px;line-height:50px;font-weight:700;}@media only screen and (max-width:1300px) and (min-width:1000px){body .row .col.section-title h1,body h1,.full-width-content .recent-post-container .inner-wrap h2{font-size:26.25px;line-height:37.5px;}}@media only screen and (max-width:999px) and (min-width:690px){body .row .col.section-title h1,body h1,html body .row .col.section-title.span_12 h1,#page-header-bg .span_6 h1,#page-header-bg.fullscreen-header .span_6 h1,.full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2{font-size:24.5px;line-height:35px;}.full-width-content .recent-post-container .inner-wrap h2{font-size:24.5px;line-height:35px;}.wpb_wrapper h1.vc_custom_heading{font-size:24.5px!important;line-height:35px!important;}}@media only screen and (max-width:690px){body .row .col.section-title h1,body h1,html body .row .col.section-title.span_12 h1,body.single.single-post .row .col.section-title.span_12 h1,#page-header-bg .span_6 h1,#page-header-bg.fullscreen-header .span_6 h1,.full-width-content .nectar-recent-posts-slider .recent-post-container .inner-wrap h2{font-size:22.75px;line-height:32.5px;}.wpb_wrapper h1.vc_custom_heading{font-size:22.75px!important;line-height:32.5px!important;}}#page-header-bg h2,body h2,article.post .post-header h2,article.post.quote .post-content h2,article.post.link .post-content h2,#call-to-action span,.woocommerce .full-width-tabs #reviews h3,.row .col.section-title h2,.nectar_single_testimonial[data-style="bold"] p,.woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control,body #error-404 h2,.woocommerce-page .woocommerce p.cart-empty,.nectar-ext-menu-item .inherit-h2 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h2,#mobile-menu .nectar-ext-menu-item .inherit-h2,#ajax-content-wrap .nectar-inherit-h2,[data-inherit-heading-family="h2"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h2{font-family:PT Sans;text-transform:none;letter-spacing:0;font-size:30px;line-height:39px;font-weight:700;}.single-product div.product h1.product_title,.nectar-shop-header .page-title{font-size:30px;line-height:39px;}.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:30px;}@media only screen and (max-width:1300px) and (min-width:1000px){body h2,.single-product div.product h1.product_title,.nectar-shop-header .page-title,#ajax-content-wrap .nectar-inherit-h2,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:25.5px;line-height:33.15px;}.row .span_2 h2,.row .span_3 h2,.row .span_4 h2,.row .vc_col-sm-2 h2,.row .vc_col-sm-3 h2,.row .vc_col-sm-4 h2{font-size:21px;line-height:27.3px;}}@media only screen and (max-width:999px) and (min-width:690px){.col h2,body h2,.single-product div.product h1.product_title,.nectar-shop-header .page-title,.woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control,.nectar_single_testimonial[data-style="bold"] p,#slide-out-widget-area .nectar-ext-menu-item .inherit-h2,#mobile-menu .nectar-ext-menu-item .inherit-h2,#ajax-content-wrap .nectar-inherit-h2,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:24px;line-height:31.2px;}.wpb_wrapper h2.vc_custom_heading{font-size:24px!important;line-height:31.2px!important;}}@media only screen and (max-width:690px){.col h2,body h2,.single-product div.product h1.product_title,.nectar-shop-header .page-title,.woocommerce-account .woocommerce > #customer_login .nectar-form-controls .control,.nectar_single_testimonial[data-style="bold"] p,#slide-out-widget-area .nectar-ext-menu-item .inherit-h2,#ajax-content-wrap .nectar-inherit-h2,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h2"] .content{font-size:21px;line-height:27.3px;}.wpb_wrapper h2.vc_custom_heading{font-size:21px!important;line-height:27.3px!important;}}body h3,.row .col h3,.toggle h3 a,.ascend #respond h3,.ascend h3#comments,.woocommerce ul.products li.product.text_on_hover h3,.masonry.classic_enhanced .masonry-blog-item h3.title,.woocommerce ul.products li.product.material h3,.woocommerce-page ul.products li.product.material h3,.portfolio-items[data-ps="8"] .col h3,.nectar-hor-list-item[data-font-family="h3"],.woocommerce ul.products li.product h2,.nectar-quick-view-box h1,.nectar-ext-menu-item .inherit-h3 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h3,#mobile-menu .nectar-ext-menu-item .inherit-h3,#ajax-content-wrap .nectar-inherit-h3,[data-inherit-heading-family="h3"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h3,.nectar-quick-view-box div.product .summary p.price.nectar-inherit-h3,body.woocommerce div.product p.price.nectar-inherit-h3 ins{font-family:PT Sans;text-transform:none;letter-spacing:0;font-size:24px;line-height:32px;font-weight:700;}@media only screen and (min-width:1000px){.ascend .comments-section .comment-wrap.full-width-section > h3#comments,.blog_next_prev_buttons[data-post-header-style="default_minimal"] .col h3{font-size:40.8px;line-height:48.8px;}#ajax-content-wrap .masonry.classic_enhanced .masonry-blog-item.large_featured h3.title{font-size:36px;line-height:48px;}}@media only screen and (min-width:1300px) and (max-width:1500px){body .portfolio-items.constrain-max-cols.masonry-items .col.elastic-portfolio-item h3{font-size:20.4px;line-height:27.2px;}}.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:24px;}@media only screen and (max-width:1300px) and (min-width:1000px){.row .span_2 h3,.row .span_3 h3,.row .span_4 h3,.row .vc_col-sm-2 h3,.row .vc_col-sm-3 h3,.row .vc_col-sm-4 h3,.row .col h3,body h3,#ajax-content-wrap .nectar-inherit-h3,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:20.4px;line-height:27.2px;}}@media only screen and (max-width:999px) and (min-width:690px){.row .span_2 h3,.row .span_3 h3,.row .span_4 h3,.row .vc_col-sm-2 h3,.row .vc_col-sm-3 h3,.row .vc_col-sm-4 h3,.row .col h3,body h3,#slide-out-widget-area .nectar-ext-menu-item .inherit-h3,#ajax-content-wrap .nectar-inherit-h3,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:19.2px;line-height:25.6px;}.wpb_wrapper h3.vc_custom_heading{font-size:19.2px!important;line-height:25.6px!important;}}@media only screen and (max-width:690px){.row .span_2 h3,.row .span_3 h3,.row .span_4 h3,.row .vc_col-sm-2 h3,.row .vc_col-sm-3 h3,.row .vc_col-sm-4 h3,.row .col h3,body h3,#slide-out-widget-area .nectar-ext-menu-item .inherit-h3,#mobile-menu .nectar-ext-menu-item .inherit-h3,#ajax-content-wrap .nectar-inherit-h3,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h3"] .content{font-size:16.8px;line-height:22.4px;}.wpb_wrapper h3.vc_custom_heading{font-size:16.8px!important;line-height:22.4px!important;}}@media only screen and (min-width:1300px){.nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3{font-size:33.6px;}}@media only screen and (max-width:1300px) and (min-width:1000px){.nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3{font-size:28.56px;}}@media only screen and (max-width:999px) and (min-width:690px){.nectar-post-grid[data-columns="2"][data-masonry="yes"] > div:nth-of-type(3n + 1) h3{font-size:26.88px;}}body h4,.row .col h4,.portfolio-items .work-meta h4,.list-icon-holder[data-icon_type="numerical"] span,.portfolio-items .col.span_3 .work-meta h4,#respond h3,.blog-recent.related-posts h3.title,h3#comments,.portfolio-items[data-ps="6"] .work-meta h4,.nectar-hor-list-item[data-font-family="h4"],.toggles[data-style="minimal_small"] .toggle > h3 a,.woocommerce #reviews #reply-title,p.woocommerce.add_to_cart_inline > span.woocommerce-Price-amount,p.woocommerce.add_to_cart_inline ins > span.woocommerce-Price-amount,#header-outer .total,#header-outer .total strong,.nectar-ext-menu-item .inherit-h4 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h4,#mobile-menu .nectar-ext-menu-item .inherit-h4,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list .product-meta a:not(.remove),.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,.archive.woocommerce .container-wrap > .main-content #sidebar > .header h4,[data-inherit-heading-family="h4"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h4,.nectar-quick-view-box div.product .summary p.price.nectar-inherit-h4,body.woocommerce div.product p.price.nectar-inherit-h4 ins{font-family:PT Sans;text-transform:none;letter-spacing:0;font-size:20px;line-height:34px;}@media only screen and (min-width:690px){.portfolio-items[data-ps="6"] .wide_tall .work-meta h4{font-size:34px!important;line-height:42px!important;}.nectar-slide-in-cart .widget_shopping_cart .cart_list .mini_cart_item > a:not(.remove){font-family:PT Sans!important;}}.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:20px;}@media only screen and (max-width:1300px) and (min-width:1000px){.row .col h4,body h4,.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:20px;line-height:34px;}}@media only screen and (max-width:999px) and (min-width:690px){.row .col h4,body h4,#slide-out-widget-area .nectar-ext-menu-item .inherit-h4,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list .product-meta a:not(.remove),.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:18px;line-height:30.6px;}}@media only screen and (max-width:690px){.row .col h4,body h4,#slide-out-widget-area .nectar-ext-menu-item .inherit-h4,.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list .product-meta a:not(.remove),.woocommerce-cart .product-name a,#ajax-content-wrap .nectar-inherit-h4,.archive.woocommerce .container-wrap > .main-content #sidebar > .header h4,.nectar-category-grid[data-style="mouse_follow_image"][data-h-tag="h4"] .content{font-size:18px;line-height:30.6px;}}body h5,.row .col h5,.portfolio-items .work-item.style-3-alt p,.nectar-hor-list-item[data-font-family="h5"],.nectar-ext-menu-item .inherit-h5 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h5,#ajax-content-wrap .nectar-inherit-h5,[data-inherit-heading-family="h5"],.nectar-quick-view-box div.product h1.product_title.nectar-inherit-h5,.nectar-quick-view-box div.product .summary p.price.nectar-inherit-h5,body.woocommerce div.product p.price.nectar-inherit-h5 ins{font-family:PT Sans;text-transform:none;letter-spacing:0;font-size:16px;line-height:25px;font-weight:700;}body .wpb_column > .wpb_wrapper > .morphing-outline .inner > h5{font-size:22px;}@media only screen and (max-width:1300px) and (min-width:1000px){.row .col h5,body h5,#ajax-content-wrap .nectar-inherit-h5{font-size:16px;line-height:25px;}}@media only screen and (max-width:999px) and (min-width:690px){.row .col h5,body h5,#ajax-content-wrap .nectar-inherit-h5{font-size:16px;line-height:25px;}}@media only screen and (max-width:690px){.row .col h5,body h5,#slide-out-widget-area .nectar-ext-menu-item .inherit-h5,#ajax-content-wrap .nectar-inherit-h5{font-size:16px;line-height:25px;}}body h6,.row .col h6,.nectar-hor-list-item[data-font-family="h6"],.nectar-ext-menu-item .inherit-h6 .menu-title-text,#slide-out-widget-area .nectar-ext-menu-item .inherit-h6,#ajax-content-wrap .nectar-inherit-h6,[data-inherit-heading-family="h6"],.nectar-quick-view-box div.product .summary p.price.nectar-inherit-h6,body.woocommerce div.product p.price.nectar-inherit-h6 ins{font-family:PT Sans;text-transform:uppercase;letter-spacing:2px;font-size:18px;line-height:26px;}@media only screen and (max-width:1300px) and (min-width:1000px){.row .col h6,body h6,#ajax-content-wrap .nectar-inherit-h6{font-size:18px;line-height:26px;}}@media only screen and (max-width:999px) and (min-width:690px){.row .col h6,body h6,#ajax-content-wrap .nectar-inherit-h6{font-size:18px;line-height:26px;}}@media only screen and (max-width:690px){.row .col h6,body h6,#ajax-content-wrap .nectar-inherit-h6{font-size:18px;line-height:26px;}}body i,body em,.masonry.meta_overlaid article.post .post-header .meta-author > span,.post-area.masonry.meta_overlaid article.post .post-meta .date,.post-area.masonry.meta_overlaid article.post.quote .quote-inner .author,.post-area.masonry.meta_overlaid article.post.link .post-content .destination,body .testimonial_slider[data-style="minimal"] blockquote span.title{font-family:PT Sans;font-size:16px;line-height:22px;font-weight:400;font-style:italic;}body b,body strong,body .bold{font-family:PT Sans;}form label,.woocommerce-checkout-review-order-table .product-info .amount,.nectar-progress-bar p,.nectar-progress-bar span strong i,.nectar-progress-bar span strong,body.material .nectar_single_testimonial[data-style="basic"] span.wrap,body.material .nectar_single_testimonial[data-style="basic_left_image"] span.wrap,.testimonial_slider:not([data-style="minimal"]) blockquote span,.woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered,.woocommerce-ordering .select2-container .select2-choice>.select2-chosen,body[data-fancy-form-rcs="1"] .woocommerce-ordering select,.tabbed[data-style="minimal_alt"] > ul li a,.material .widget .nectar_widget[class*="nectar_blog_posts_"] > li .post-title,body.material .tagcloud a,.material .main-content .widget li a,.material #footer-outer .widget li a,.nectar-recent-posts-slider_multiple_visible .recent-post-container.container .strong a,.material .recentcomments .comment-author-link,.single .post-area .content-inner > .post-tags a,.masonry.material .masonry-blog-item .grav-wrap a,.nectar-recent-posts-single_featured .grav-wrap a,.masonry.material .masonry-blog-item .meta-category a,.post-area.featured_img_left article .meta-category a,.post-area.featured_img_left article .grav-wrap .text a,.related-posts[data-style="material"] .meta-category a,.masonry.auto_meta_overlaid_spaced article.post.quote .author,.masonry.material article.post.quote .author,body.search-results #search-results[data-layout="list-no-sidebar"] .result .inner-wrap h2 span,.material .tabbed >ul li a,.post-area.featured_img_left article.post.quote .author,.single .post.format-quote .author,.related-posts[data-style="material"] .grav-wrap .text a,.auto_meta_overlaid_spaced .masonry-blog-item .meta-category a,[data-style="list_featured_first_row"] .meta-category a,.nectar-recent-posts-single_featured .strong a,.nectar-recent-posts-single_featured.multiple_featured .controls li .title,body .woocommerce .nectar-woo-flickity[data-controls="arrows-and-text"] .woo-flickity-count,body.woocommerce ul.products li.minimal.product span.onsale,.nectar-ajax-search-results ul.products li.minimal.product span.onsale,.nectar-woo-flickity ul.products li.minimal.product span.onsale,.nectar-quick-view-box span.onsale,.nectar-quick-view-box .nectar-full-product-link a,body .nectar-quick-view-box .single_add_to_cart_button,.nectar-quick-view-box .single_add_to_cart_button,body .cart .quantity input.qty,body .cart .quantity input.plus,body .cart .quantity input.minus,body .woocommerce-mini-cart .quantity input.qty,body .woocommerce-mini-cart .quantity input.plus,body .woocommerce-mini-cart .quantity input.minus,.style_slide_in_click .product-meta > .quantity .amount,.pum-theme-salient-page-builder-optimized .pum-container .pum-content+.pum-close,.woocommerce-account .woocommerce-form-login .lost_password,.woocommerce div.product .woocommerce-tabs .full-width-content[data-tab-style="fullwidth"] ul.tabs li a,.woocommerce div.product_meta,.woocommerce table.shop_table th,#header-outer .widget_shopping_cart .cart_list a,.woocommerce .yith-wcan-reset-navigation.button,.single-product .entry-summary p.stock.out-of-stock,.nectar-post-grid .nectar-post-grid-item .content .meta-category a,.nectar-slide-in-cart.style_slide_in_click ul.product_list_widget li dl dt,.woocommerce-tabs ol.commentlist li .comment-text p.meta strong{font-family:PT Sans;font-weight:700!important;}.portfolio-filters-inline .container > ul a,.portfolio-filters > ul a,.portfolio-filters > a span,.nectar-post-grid-filters a{font-family:PT Sans;font-size:16px!important;line-height:16px;}.portfolio-filters-inline #current-category{line-height:16px;}.portfolio-items .col p,.container-wrap[data-nav-pos="after_project_2"] .bottom_controls li span:not(.text){font-family:PT Sans;text-transform:capitalize;font-size:14px!important;line-height:30px;}.nectar-dropcap{font-family:PT Sans;text-transform:uppercase;font-size:60px!important;line-height:53px;font-weight:700!important;}body #page-header-bg h1,html body .row .col.section-title h1,.nectar-box-roll .overlaid-content h1{font-family:PT Sans;font-size:60px;line-height:60px;}@media only screen and (min-width:690px) and (max-width:999px){.overlaid-content h1{font-size:42px!important;line-height:46px!important;}}@media only screen and (min-width:1000px) and (max-width:1300px){#page-header-bg .span_6 h1,.nectar-box-roll .overlaid-content h1{font-size:51px;line-height:51px;}}@media only screen and (min-width:1300px) and (max-width:1500px){#page-header-bg .span_6 h1,.nectar-box-roll .overlaid-content h1{font-size:54px;line-height:54px;}}@media only screen and (max-width:690px){.overlaid-content h1{font-size:27px!important;line-height:27px!important;}}body #page-header-bg .span_6 span.subheader,#page-header-bg span.result-num,body .row .col.section-title > span,.page-header-no-bg .col.section-title h1 > span,.nectar-box-roll .overlaid-content .subheader{font-family:PT Sans;text-transform:none;letter-spacing:0;font-size:16px;line-height:30px;font-weight:700;}@media only screen and (min-width:1000px) and (max-width:1300px){body #page-header-bg:not(.fullscreen-header) .span_6 span.subheader,body .row .col.section-title > span{font-size:14.4px;line-height:27px;}}@media only screen and (min-width:690px) and (max-width:999px){body #page-header-bg.fullscreen-header .span_6 span.subheader,.overlaid-content .subheader{font-size:12.8px!important;line-height:24px!important;}}@media only screen and (max-width:690px){body #page-header-bg.fullscreen-header .span_6 span.subheader,.overlaid-content .subheader{font-size:11.2px!important;line-height:21px!important;}#page-header-bg .span_6 span.subheader{font-size:16px!important;line-height:1.6!important;}}body #slide-out-widget-area .inner .off-canvas-menu-container li a,body #slide-out-widget-area.fullscreen .inner .off-canvas-menu-container li a,body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a,body #slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li a,body #nectar-ocm-ht-line-check{font-family:PT Sans;text-transform:none;font-size:30px;line-height:35px;}@media only screen and (min-width:690px) and (max-width:999px){body #slide-out-widget-area.fullscreen .inner .off-canvas-menu-container li a,#slide-out-widget-area.fullscreen-split .off-canvas-menu-container > ul > li > a,body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a{font-size:27px!important;line-height:31.5px!important;}}@media only screen and (max-width:690px){body #slide-out-widget-area.fullscreen .inner .off-canvas-menu-container li a,#slide-out-widget-area.fullscreen-split .off-canvas-menu-container > ul > li > a,body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li a{font-size:21px!important;line-height:24.5px!important;}}body #slide-out-widget-area .menuwrapper li small,#header-outer .sf-menu li ul li a .item_desc,#slide-out-widget-area.fullscreen-split .off-canvas-menu-container li small,#slide-out-widget-area .off-canvas-menu-container .nectar-ext-menu-item .item_desc,.material #slide-out-widget-area[class*="slide-out-from-right"] .off-canvas-menu-container .menu li small,#header-outer #mobile-menu ul ul > li > a .item_desc,.nectar-ext-menu-item .menu-item-desc,#slide-out-widget-area .inner .off-canvas-menu-container li a .item_desc{font-family:PT Sans;}@media only screen and (min-width:690px) and (max-width:999px){#slide-out-widget-area .menuwrapper li small{font-size:;line-height:;}}@media only screen and (max-width:690px){#slide-out-widget-area .menuwrapper li small{font-size:;line-height:;}}blockquote,.testimonial_slider blockquote,.testimonial_slider blockquote span,.testimonial_slider[data-style="minimal"] blockquote span:not(.title),.testimonial_slider[data-style="minimal"] blockquote,.testimonial_slider[data-style="minimal"] .controls{font-family:PT Sans;letter-spacing:0;font-size:18px;line-height:37px;}@media only screen and (max-width:1300px) and (min-width:1000px){blockquote,.testimonial_slider blockquote,.testimonial_slider blockquote span,.testimonial_slider[data-style="minimal"] blockquote,.testimonial_slider[data-style="minimal"] blockquote span:not(.title){font-size:18px;line-height:37px;}}@media only screen and (max-width:999px) and (min-width:690px){blockquote,.testimonial_slider blockquote,.testimonial_slider blockquote span,.testimonial_slider[data-style="minimal"] blockquote,.testimonial_slider[data-style="minimal"] blockquote span:not(.title){font-size:18px;line-height:37px;}}@media only screen and (max-width:690px){blockquote,.testimonial_slider blockquote,.testimonial_slider blockquote span,.testimonial_slider[data-style="minimal"] blockquote,.testimonial_slider[data-style="minimal"] blockquote span:not(.title){font-size:18px;line-height:37px;}}#footer-outer .widget h4,#sidebar h4,#call-to-action .container a,.uppercase,.nectar-post-grid-wrap .load-more,.nectar-button,.nectar-button.medium,.nectar-button.small,.nectar-view-indicator span,.nectar-3d-transparent-button,.swiper-slide .button a,.play_button_with_text span[data-font*="btn"],body .widget_calendar table th,body #footer-outer #footer-widgets .col .widget_calendar table th,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > a,.carousel-heading h2,body .gform_wrapper .top_label .gfield_label,body .vc_pie_chart .wpb_pie_chart_heading,#infscr-loading div,#page-header-bg .author-section a,.ascend input[type="submit"],.ascend button[type="submit"],.material input[type="submit"],.material button[type="submit"],body.material #page-header-bg.fullscreen-header .inner-wrap >a,#page-header-bg[data-post-hs="default_minimal"] .inner-wrap > a,.widget h4,.text-on-hover-wrap .categories a,.meta_overlaid article.post .post-header h3,.meta_overlaid article.post.quote .post-content h3,.meta_overlaid article.post.link .post-content h3,.meta_overlaid article .meta-author a,.pricing-column.highlight h3 .highlight-reason,.blog-recent[data-style="minimal"] .col > span,body .masonry.classic_enhanced .posts-container article .meta-category a,body .masonry.classic_enhanced .posts-container article.wide_tall .meta-category a,.blog-recent[data-style*="classic_enhanced"] .meta-category a,.nectar-recent-posts-slider .container .strong,.single .heading-title[data-header-style="default_minimal"] .meta-category a,.nectar-fancy-box .link-text,.post-area.standard-minimal article.post .post-meta .date a,.post-area.standard-minimal article.post .more-link span,body[data-button-style="rounded"] #pagination > a,html body #pagination > span,body[data-form-submit="see-through-2"] input[type=submit],body[data-form-submit="see-through-2"] button[type=submit],body[data-form-submit="see-through"] input[type=submit],body[data-form-submit="see-through"] button[type=submit],body[data-form-submit="regular"] input[type=submit] body[data-form-submit="regular"] button[type=submit],.nectar_team_member_overlay .team_member_details .title,body:not([data-header-format="left-header"]) #header-outer nav > ul > .megamenu > ul > li > ul > li.has-ul > a,.nectar_fullscreen_zoom_recent_projects .project-slide .project-info .normal-container > a,.nectar-hor-list-item .nectar-list-item-btn,.nectar-category-grid-item .content span.subtext,.yikes-easy-mc-form .yikes-easy-mc-submit-button,.nectar-cta .nectar-button-type,.nectar-post-grid-wrap .nectar-post-grid-filters h4{font-family:PT Sans;text-transform:none!important;letter-spacing:0;font-size:17px;font-weight:700;}.team-member h4,.row .col.section-title p,.row .col.section-title span,#page-header-bg .subheader,.nectar-milestone .subject,.testimonial_slider blockquote span{font-family:PT Sans;}article.post .post-meta .month{line-height:-6px;} @media only screen and (min-width:1000px){body #ajax-content-wrap.no-scroll{min-height:calc(100vh - 257px);height:calc(100vh - 257px)!important;}}@media only screen and (min-width:1000px){#page-header-wrap.fullscreen-header,#page-header-wrap.fullscreen-header #page-header-bg,html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header,.nectar_fullscreen_zoom_recent_projects,#nectar_fullscreen_rows:not(.afterLoaded) > div{height:calc(100vh - 256px);}.wpb_row.vc_row-o-full-height.top-level,.wpb_row.vc_row-o-full-height.top-level > .col.span_12{min-height:calc(100vh - 256px);}html:not(.nectar-box-roll-loaded) .nectar-box-roll > #page-header-bg.fullscreen-header{top:257px;}.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container{height:calc(100vh - 255px)!important;}.admin-bar .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded),.admin-bar .nectar-slider-wrap[data-fullscreen="true"]:not(.loaded) .swiper-container{height:calc(100vh - 255px - 32px)!important;}}.screen-reader-text,.nectar-skip-to-content:not(:focus){border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;} .fbc-page .fbc-wrap .fbc-items li:first-child { border-radius: 4px 0 0 4px; padding-left: 0px; padding-right: 0px; } .fbc-page .fbc-wrap .fbc-items { font-family: "PT Sans", sans-serif; margin: 0px; padding: 0; width: auto; display: block; float: left; font-size: 15px; color: #8B8B8B; } .ascend #sidebar h4 { margin-bottom: 12px; text-align: center; font-size: 24px; color: #0071AA; } #sidebar div ul { margin-left: 0; text-align: center; } .main-content #sidebar .widget .nectar_widget[class*="nectar_blog_posts_"][data-style="hover-featured-image"] > li:first-child:not(.has-img), .main-content #sidebar .widget .nectar_widget[class*="nectar_blog_posts_"][data-style="hover-featured-image"] > li:first-child:hover:not(.has-img) { border: 0px solid #e6e6e6!important; padding-top: 25px; } .masonry.material .masonry-blog-item .inner-wrap, body .related-posts[data-style="material"] .inner-wrap { box-shadow: 0px 5px 10px rgb(0 0 0 / 14%); border-radius: 5px; overflow: hidden; } .masonry.material .masonry-blog-item .meta-category a { color: white !important; } body.search-no-results .search-form button[type=submit] { padding: 0px!important; } .no-hover:hover { background-color: none !important; } button[type=submit]:hover, body[data-form-submit="see-through"] button[type=submit]:hover { background-color: none !important; } button[type=submit] { background-color: #ffffff !important; } /* Submit button font, size and color */ .gform_button .button { background-color: #ffffff !important; border: none; color: green !important; cursor: pointer; border: 1px solid #ffffff !important; } /* Submit button hover font, size and color */ .gform_button:hover .button:hover { background-color: green !important; color: white !important; } .white-text-hover:hover { color: #ffffff !important; background-color: #26aa6a !important; } /*.white-text-hover:after {*/ /* content: ">";*/ /*}*/ input#gform_submit_button_3 { background-color: #ffffff !important; color: #29aa6a; border: 2px solid #ffffff !important; font-size: 16px; padding: 4px 10px 4px 10px !important; } /*#gform_submit_button_3:after {*/ /* content: ">" !important;*/ /*}*/ #gform_submit_button_3:hover { color: #ffffff !important; background-color: #29aa6a !important; } .portfolio-filters a, .portfolio-filters #sort-portfolio { background-color: #29aa6a !important; } button.nieuwsbrief-submit:hover { color: #ffffff; background-color: #26aa6a !important; } .ascend .container-wrap button[type="submit"] { padding: 4px 10px 4px 10px !important; border-radius: 0; } button.search-widget-btn.no-hover:hover { background-color: transparent !important; cursor: default !important; } button.search-widget-btn.no-hover:focus { background-color: transparent !important; cursor: default !important; } button[type=submit]:hover { background-color: transparent !important; color: #ffffff !important; } /*.nectar-post-grid-link > div > h3 {*/ /* color: white !important;*/ /*}*/ p#breadcrumbs { padding-bottom: 10px; color: #8b8b8b !important; font-family: 'PT Sans'; font-size: 15px; } @media (max-width: 420px){ .steun-wikimedia-cta{ visibility: hidden !important; } } </style> <link rel='stylesheet' id='salient-wp-menu-dynamic-css' href='https://www.wikimedia.nl/wp-content/uploads/salient/menu-dynamic.css?ver=544' type='text/css' media='all' /> <link rel='stylesheet' id='tablepress-default-css' href='https://www.wikimedia.nl/wp-content/plugins/tablepress/css/build/default.css?ver=3.0.1' type='text/css' media='all' /> <link rel='stylesheet' id='tablepress-custom-css' href='https://www.wikimedia.nl/wp-content/tablepress-custom.css?ver=14' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-official-css' href='https://use.fontawesome.com/releases/v5.15.3/css/all.css' type='text/css' media='all' integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous" /> <link rel='stylesheet' id='js_composer_front-css' href='https://www.wikimedia.nl/wp-content/plugins/js_composer_salient/assets/css/js_composer.min.css?ver=6.6.0' type='text/css' media='all' /> <link rel='stylesheet' id='salient-child-style-css' href='https://www.wikimedia.nl/wp-content/themes/salient-child/style.css?ver=13.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='redux-google-fonts-salient_redux-css' href='//www.wikimedia.nl/wp-content/uploads/omgf/redux-google-fonts-salient_redux/redux-google-fonts-salient_redux.css?ver=1648469257' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-official-v4shim-css' href='https://use.fontawesome.com/releases/v5.15.3/css/v4-shims.css' type='text/css' media='all' integrity="sha384-C2B+KlPW+WkR0Ld9loR1x3cXp7asA0iGVodhCoJ4hwrWm/d9qKS59BGisq+2Y0/D" crossorigin="anonymous" /> <style id='font-awesome-official-v4shim-inline-css' type='text/css'> @font-face { font-family: "FontAwesome"; font-display: block; src: url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-brands-400.eot"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-brands-400.woff2") format("woff2"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-brands-400.woff") format("woff"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-brands-400.ttf") format("truetype"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-brands-400.svg#fontawesome") format("svg"); } @font-face { font-family: "FontAwesome"; font-display: block; src: url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-solid-900.eot"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-solid-900.woff2") format("woff2"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-solid-900.woff") format("woff"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-solid-900.ttf") format("truetype"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-solid-900.svg#fontawesome") format("svg"); } @font-face { font-family: "FontAwesome"; font-display: block; src: url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-regular-400.eot"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-regular-400.woff2") format("woff2"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-regular-400.woff") format("woff"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-regular-400.ttf") format("truetype"), url("https://use.fontawesome.com/releases/v5.15.3/webfonts/fa-regular-400.svg#fontawesome") format("svg"); unicode-range: U+F004-F005,U+F007,U+F017,U+F022,U+F024,U+F02E,U+F03E,U+F044,U+F057-F059,U+F06E,U+F070,U+F075,U+F07B-F07C,U+F080,U+F086,U+F089,U+F094,U+F09D,U+F0A0,U+F0A4-F0A7,U+F0C5,U+F0C7-F0C8,U+F0E0,U+F0EB,U+F0F3,U+F0F8,U+F0FE,U+F111,U+F118-F11A,U+F11C,U+F133,U+F144,U+F146,U+F14A,U+F14D-F14E,U+F150-F152,U+F15B-F15C,U+F164-F165,U+F185-F186,U+F191-F192,U+F1AD,U+F1C1-F1C9,U+F1CD,U+F1D8,U+F1E3,U+F1EA,U+F1F6,U+F1F9,U+F20A,U+F247-F249,U+F24D,U+F254-F25B,U+F25D,U+F267,U+F271-F274,U+F279,U+F28B,U+F28D,U+F2B5-F2B6,U+F2B9,U+F2BB,U+F2BD,U+F2C1-F2C2,U+F2D0,U+F2D2,U+F2DC,U+F2ED,U+F328,U+F358-F35B,U+F3A5,U+F3D1,U+F410,U+F4AD; } </style> <script type="text/javascript" src="https://www.wikimedia.nl/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <link rel="https://api.w.org/" href="https://www.wikimedia.nl/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.wikimedia.nl/wp-json/wp/v2/pages/6272" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.wikimedia.nl/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel="canonical" href="https://www.wikimedia.nl/samenwerken/hoger-onderwijs/" /> <link rel='shortlink' href='https://www.wikimedia.nl/?p=6272' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.wikimedia.nl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.wikimedia.nl%2Fsamenwerken%2Fhoger-onderwijs%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.wikimedia.nl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.wikimedia.nl%2Fsamenwerken%2Fhoger-onderwijs%2F&#038;format=xml" /> <script type="text/javascript"> /* <![CDATA[ */ var isc_front_data = { caption_position : 'bottom-right', } /* ]]> */ </script> <style> .isc-source { position: relative; display: inline-block; } </style> <script type="text/javascript"> var root = document.getElementsByTagName( "html" )[0]; root.setAttribute( "class", "js" ); </script><script> document.addEventListener("DOMContentLoaded", function() { // Controleren of de body de juiste class heeft if (document.body.classList.contains('page-template-default')) { // Zoek alle tabellen op de pagina var tables = document.getElementsByTagName('table'); // Loop door elke gevonden tabel for (var i = 0; i < tables.length; i++) { var table = tables[i]; // Maak een nieuwe div var div = document.createElement('div'); // Voeg een class toe aan de div div.classList.add('cc-table-wrapper'); // Voeg hier de gewenste classnaam toe // Voeg de tabel toe aan de nieuwe div table.parentNode.insertBefore(div, table); div.appendChild(table); } } }); </script><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <link rel="icon" href="https://www.wikimedia.nl/wp-content/uploads/2021/06/cropped-Wikimedia-logo-32x32.png" sizes="32x32" /> <link rel="icon" href="https://www.wikimedia.nl/wp-content/uploads/2021/06/cropped-Wikimedia-logo-192x192.png" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.wikimedia.nl/wp-content/uploads/2021/06/cropped-Wikimedia-logo-180x180.png" /> <meta name="msapplication-TileImage" content="https://www.wikimedia.nl/wp-content/uploads/2021/06/cropped-Wikimedia-logo-270x270.png" /> <style type="text/css" id="wp-custom-css"> tr.odd td { background-color: #d3d3d3 !important; } /* Contact Form 7 Styles ---------------------------------*/ .wpcf7 { background-color: #29aa6a; border: 5px solid #29aa6a; } div#gfield_description_7_17, div#gfield_description_9_36, .page-id-7677 label{ font-size: 17px!important; } .wpcf7-form { margin-left: 25px; margin-right: 25px; margin-top: 25px; color: #ffffff } input[type=text], input[type=email], input[type=password], input[type=tel], input[type=url], input[type=search], input[type=date], textarea, span.wpcf7-not-valid-tip, .woocommerce input#coupon_code, body[data-fancy-form-rcs="1"] .select2-container, body[data-fancy-form-rcs="1"] .select2-drop, body[data-fancy-form-rcs="1"] .select2-search, .select2-search input, body[data-form-style="minimal"] input[type="text"], body[data-form-style="minimal"] textarea, body[data-form-style="minimal"] input[type="email"], body[data-form-style="minimal"] .container-wrap .span_12.light input[type="email"], body[data-form-style="minimal"] input[type=password], body[data-form-style="minimal"] input[type=tel], body[data-form-style="minimal"] input[type=url], body[data-form-style="minimal"] input[type=search], body[data-form-style="minimal"] input[type=date] { font-size: 14px; background-color: #ffffff; } @media only screen and (min-width: 691px) AND (max-width: 999px) { div#fws_63515ecc23c0e { height: 100px!important; } } .row_col_wrap_12.col.span_12.dark.left .wpcf7-submit { background-color:#ffffff!important; color:#29aa6a!important; font-size: 14px; } .ascend #sidebar .widget.widget_categories li, .ascend #sidebar .widget.widget_pages li, .ascend #sidebar .widget.widget_nav_menu li, .ascend #footer-outer .widget.widget_categories li, .ascend #footer-outer .widget.widget_pages li, .ascend #footer-outer .widget.widget_nav_menu li, .ascend #footer-outer #footer-widgets .widget.widget_categories li, .ascend #footer-outer #footer-widgets .widget.widget_pages li, .ascend #footer-outer #footer-widgets .widget.widget_nav_menu li { padding: 0px 0!important; } /* .wpb_column.boxed > .vc_column-inner { padding: 0px 0px 15px; } */ /* Buttonizer Styles ---------------------------------*/ .button-0-0-3.steun-wikimedia-cta { color: rgb(255, 255, 255); width: 260px; cursor: pointer; height: 60px; margin: 0px auto; display: block; position: relative; box-shadow: none; text-align: center; transition: all 250ms ease-in-out 0s; visibility: visible; user-select: none; border-radius: 0px; text-decoration: none; outline: none !important; max-width: none !important; } .button-0-0-3.samenwerken-wikimedia-cta { color: rgb(255, 255, 255); width: 260px; cursor: pointer; height: 60px; margin: 0px auto; display: block; position: relative; box-shadow: none; text-align: center; transition: all 250ms ease-in-out 0s; visibility: visible; user-select: none; border-radius: 0px; text-decoration: none; outline: none !important; max-width: none !important; } .button-0-0-3.platform-wikimedia-cta { color: rgb(255, 255, 255); width: 260px; cursor: pointer; height: 60px; margin: 0px auto; display: block; position: relative; box-shadow: none; text-align: center; transition: all 250ms ease-in-out 0s; visibility: visible; user-select: none; border-radius: 0px; text-decoration: none; outline: none !important; max-width: none !important; } .buttonizer-group.group-0-0-1 { right: 0%; bottom: 50%; display: flex; z-index: 99999; position: fixed; transition: all 250ms ease-in-out 0s; visibility: hidden; flex-direction: column-reverse; } .single-post #page-header-wrap[data-responsive="true"], .single-post #page-header-wrap[data-zresponsive="true"] #page-header-bg { display: none; } #top .sf-menu li ul li a:hover, body #top nav .sf-menu ul .sfHover > a, #top .sf-menu li ul .current-menu-item > a, #top .sf-menu li ul .current-menu-ancestor > a, #top nav > ul > .megamenu > ul ul li a:hover, #top nav > ul > .megamenu > ul ul li a:focus, #top nav > ul > .megamenu > ul ul .current-menu-item > a, #header-secondary-outer ul ul li a:hover, #header-secondary-outer ul ul li a:focus, #header-secondary-outer ul > li:not(.megamenu) ul a:hover, body #header-secondary-outer .sf-menu ul .sfHover > a, #search-outer .ui-widget-content li:hover, .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, #header-outer #top nav > ul > li:not(.megamenu) ul a:hover, #header-outer #top nav > ul > li:not(.megamenu) .sfHover > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a, #top nav > ul > .megamenu > ul ul .sfHover > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover, body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul ul .current-menu-item > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a { background-color: #F6F6F6!important; } #search-outer .ui-widget-content li:hover *, #search-outer .ui-widget-content .ui-state-focus *, body #top nav .sf-menu ul .sfHover > a, #top nav > ul > .megamenu > ul ul .current-menu-item > a, #header-secondary-outer ul ul li:hover > a, #header-secondary-outer ul ul li:hover > a i, #header-secondary-outer ul .sfHover > a, body[data-dropdown-style="minimal"] #header-secondary-outer ul > li:not(.megamenu) .sfHover > a, body #top nav .sf-menu ul .sfHover > a .sf-sub-indicator i, body #top nav .sf-menu ul li:hover > a .sf-sub-indicator i, body #top nav .sf-menu ul li:hover > a, #top nav > ul > .megamenu > ul > li > a:hover, #top nav > ul > .megamenu > ul > .sfHover > a, body #top nav .sf-menu ul .current-menu-item > a, body #top nav .sf-menu ul .current_page_item > a .sf-sub-indicator i, body #top nav .sf-menu ul .current_page_ancestor > a .sf-sub-indicator i, body #top nav .sf-menu ul .sfHover > a, body #top nav .sf-menu ul .current_page_ancestor > a, body #top nav .sf-menu ul .current-menu-ancestor > a, body #top nav .sf-menu ul .current_page_item > a, body .sf-menu ul li ul .sfHover > a .sf-sub-indicator i, body .sf-menu > li > a:active > .sf-sub-indicator i, body .sf-menu > .sfHover > a > .sf-sub-indicator i, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .sfHover > a, body .sf-menu li ul .sfHover > a, body #top nav > ul > .megamenu ul li:hover > a, #header-outer #top nav > ul > li:not(.megamenu) ul a:hover, body[data-dropdown-style="minimal"] #header-secondary-outer ul >li:not(.megamenu) ul a:hover, #header-outer #top nav > ul > li:not(.megamenu) .sfHover > a, #header-outer #top nav ul li .sfHover > a .sf-sub-indicator i, #top nav > ul > .megamenu > ul ul li a:hover, #top nav > ul > .megamenu > ul ul li a:focus, #top nav > ul > .megamenu > ul ul .sfHover > a, #header-outer #top nav ul li li:hover > a .sf-sub-indicator i, #header-outer[data-format="left-header"] .sf-menu .sub-menu .current-menu-item > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul a:hover, body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul ul .current-menu-item > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) .current-menu-item > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-item > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a, #header-outer:not([data-format="left-header"]) #top nav > ul > li:not(.megamenu) ul .current-menu-ancestor > a .sf-sub-indicator i, #header-outer:not([data-format="left-header"]) #top nav > ul > .megamenu ul ul .current-menu-item > a, body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul > li > ul > .has-ul > a:hover, body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul > li > ul > .has-ul > a:focus, body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul > li:hover > a, body:not([data-header-format="left-header"]) #top nav > ul > .megamenu > ul > li > ul > .has-ul:hover > a, #header-outer:not([data-format="left-header"]) #top nav > ul > .megamenu ul ul .current-menu-item.has-ul > a, #header-outer:not([data-format="left-header"]) #top nav > ul > .megamenu ul ul .current-menu-ancestor.has-ul > a, #header-outer ul.product_list_widget li:hover dl dt, #header-outer ul.product_list_widget li:hover dl dd { color: #8B8B8B!important; } #sidebar .widget .nectar_widget[class*="nectar_blog_posts_"] > li .post-date { color: rgba(0,0,0,1); -webkit-transition: color 0.4s cubic-bezier(0.25, 1, 0.2, 1); transition: color 0.4s cubic-bezier(0.25, 1, 0.2, 1); font-size: 15px; color: #8B8B8B; } body .widget .nectar_widget[class*="nectar_blog_posts_"] > li .post-title { font-size: 18px; line-height: 21px; color: #474747; font-weight: 600 } #footer-outer #footer-widgets .col p { padding-bottom: 0px; } #infscr-loading { position: relative; z-index: 10000000; background-image: url(../img/icons/loading-white-bg.gif); background-repeat: no-repeat; background-position: center; height: 32px; border-radius: 2px; color: #29AA6A; display: inline-block; margin: 0 auto; text-align: center; width: 102px; font-family: 'PT Sans'; font-weight: 700; font-size: 17px; letter-spacing: 2px; border-color: #29AA6A; border-style: solid; border-width: 0; box-sizing: content-box; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; } .default-loading-icon:before { position: absolute; content: ""; border-color: #29AA6A transparent transparent; border-radius: 100%; border-style: solid; border-width: 3px; display: block; height: 100%; width: 100%; top: -3px; left: -3px; } .default-loading-icon { top: 50%; border-radius: 100%; height: 40px; width: 40px; margin: 0 auto; display: block; position: relative; border: 3px solid #29AA6A; margin-top: -20px; } #header-outer[data-format="centered-menu-under-logo"] #top #logo img { margin: -45px auto 0 auto; } #header-space { height: 239px; } .nectar-post-grid[data-grid-item-height="30vh"] .nectar-post-grid-item { min-height: 11vh; } .nectar-post-grid[data-grid-spacing="25px"] .nectar-post-grid-item { margin-top: 15px; margin-right: 25px; margin-bottom: 15px; margin-left: 25px; } #pagination span:not(.page-numbers), #pagination a:not(.page-numbers) { background-color: #29AA6A; } .gform_wrapper .gfield_required { color: #790000; margin-left: 4px; } .gform_body { color: white; } body[data-ext-responsive="true"].single-post .container-wrap.no-sidebar .post-area, body[data-ext-responsive="true"].single-post .container-wrap.no-sidebar .comment-list >li, body[data-ext-responsive="true"].single-post.material .container-wrap.no-sidebar .comment-wrap h3#comments, body[data-ext-responsive="true"].single-post.material .comment-wrap #respond, body[data-ext-responsive="true"].single-post #page-header-bg[data-post-hs="default_minimal"] h1, body[data-ext-responsive="true"].single-post.material #page-header-bg.fullscreen-header h1, body[data-ext-responsive="true"].single-post .heading-title[data-header-style="default_minimal"] .entry-title { max-width: 1425px; margin: 0 auto!important; } #footer-outer #copyright .widget h4, #footer-outer #copyright li a i, #footer-outer #copyright p { color: #474747; font-size: 15px; } .nectar-social.fixed { display: none; } .gform_wrapper form { text-align: left; max-width: 100%; margin: -25px auto; } .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) { font-size: inherit; font-family: inherit; padding: 5px 4px; letter-spacing: normal; background-color: white; } .gform_wrapper textarea.medium { height: 160px; width: 100%; background-color: white; } body .gform_wrapper ul li.gfield { margin-top: 0px; padding-top: 0; } body #page-header-bg h1, html body .row .col.section-title h1, .nectar-box-roll .overlaid-content h1 { font-family: PT Sans; font-size: 35px; line-height: 45px; color: #29aa6a; } p#breadcrumbs { padding-bottom: 10px; color: #8b8b8b; font-family: 'PT Sans'; font-size: 15px; } .archive.author .row .col.section-title span, .archive.category .row .col.section-title span, .archive.tag .row .col.section-title span, .archive.date .row .col.section-title span { padding-left: 0; display: none; } .row .col.section-title { margin: 0 0 0 0; padding: 0 0 0px 0; border-bottom: 0px solid rgba(0,0,0,0.15); } .nectar-post-grid[data-text-color="light"] .nectar-post-grid-item .content *, .full-width-section > .col.span_12.dark .nectar-post-grid[data-text-color="light"] .nectar-post-grid-item .content * { color: #2b2e34; } form label, .woocommerce-checkout-review-order-table .product-info .amount, .woocommerce-checkout-review-order-table .product-info .product-quantity, .nectar-progress-bar p, .nectar-progress-bar span strong i, .nectar-progress-bar span strong, body.material .nectar_single_testimonial[data-style="basic"] span.wrap, body.material .nectar_single_testimonial[data-style="basic_left_image"] span.wrap, .testimonial_slider:not([data-style="minimal"]) blockquote span, .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered, .woocommerce-ordering .select2-container .select2-choice>.select2-chosen, .tabbed[data-style="minimal_alt"] > ul li a, .material .widget .nectar_widget[class*="nectar_blog_posts_"] > li .post-title, body.material .tagcloud a, .material .widget li a, .nectar-recent-posts-slider_multiple_visible .recent-post-container.container .strong a, .material .recentcomments .comment-author-link, .single .post-area .content-inner > .post-tags a, .masonry.material .masonry-blog-item .grav-wrap a, .nectar-recent-posts-single_featured .grav-wrap a, .masonry.material .masonry-blog-item .meta-category a, .post-area.featured_img_left article .meta-category a, .post-area.featured_img_left article .grav-wrap .text a, .related-posts[data-style="material"] .meta-category a, .masonry.auto_meta_overlaid_spaced article.post.quote .author, .masonry.material article.post.quote .author, body.search-results #search-results[data-layout="list-no-sidebar"] .result .inner-wrap h2 span, .material .tabbed >ul li a, .post-area.featured_img_left article.post.quote .author, .single .post.format-quote .author, .related-posts[data-style="material"] .grav-wrap .text a, .auto_meta_overlaid_spaced .masonry-blog-item .meta-category a, [data-style="list_featured_first_row"] .meta-category a, .nectar-recent-posts-single_featured .strong a, .nectar-recent-posts-single_featured.multiple_featured .controls li .title, body .woocommerce .nectar-woo-flickity[data-controls="arrows-and-text"] .woo-flickity-count, body.woocommerce ul.products li.minimal.product span.onsale, .nectar-woo-flickity ul.products li.minimal.product span.onsale, .nectar-quick-view-box span.onsale, .nectar-quick-view-box .nectar-full-product-link a, body .nectar-quick-view-box .single_add_to_cart_button, .nectar-quick-view-box .single_add_to_cart_button, .woocommerce .cart .quantity input.qty, .woocommerce .cart .quantity input.plus, .woocommerce .cart .quantity input.minus, .pum-theme-salient-page-builder-optimized .pum-container .pum-content+.pum-close, .nectar-quick-view-box .cart .quantity input.qty, .nectar-quick-view-box .cart .quantity input.plus, .nectar-quick-view-box .cart .quantity input.minus, .woocommerce-account .woocommerce-form-login .lost_password, .woocommerce div.product .woocommerce-tabs .full-width-content[data-tab-style="fullwidth"] ul.tabs li a, .woocommerce div.product_meta, .woocommerce table.cart td.product-name, .woocommerce table.shop_table th, #header-outer .widget_shopping_cart .cart_list a, .woocommerce .yith-wcan-reset-navigation.button, .single-product .entry-summary p.stock.out-of-stock, .nectar-post-grid .nectar-post-grid-item .content .meta-category a { font-family: PT Sans; font-weight: 500!important; } p#breadcrumbs { padding-top: 20px; } .container-wrap, .project-title { background-color: #f8f8f8; position: relative; z-index: 10; margin-top: 0; padding-top: 0px; padding-bottom: 40px; } .nectar-post-grid-wrap .load-more { padding: 10px 40px; color: #29aa6a; border: 2px solid #29aa6a; background-color: transparent; display: inline-block; position: relative; transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease; } .nectar-post-grid-wrap[data-style="content_under_image"] [data-grid-item-height="30vh"] .nectar-post-grid-item-bg { height: 25vh; } input#gform_submit_button_4 { background-color: #ffffff !important; color: #29aa6a; border: 2px solid #ffffff !important; font-size: 16px; padding: 4px 10px 4px 10px !important; } .nectar-post-grid .nectar-post-grid-item .content .post-heading { max-width: 100%; } p { padding-bottom: 0px; } .button-0-0-17 { display: none; } .button-0-0-16 { display: none; } .buttonizer-button.button-0-0-18 { display: none; } /* Platform test Styles ---------------------------------*/ .col-md-wq-4 { float: left; width: 32%; margin-bottom: 1%; margin-right: 1%; } .wq_singleAnswerCtr .wq_answerTxtCtr:before, .wq_singleAnswerCtr.chosen .wq_answerTxtCtr:after { display:none; } .wq-quiz.wq-skin-flat .wq_questionTextCtr { background-color: #fff; color: #1e73be; border-radius: 0px 0px 0 0; width: 100%; } .wq_singleAnswerCtr .wq_answerTxtCtr { font-size: 20px; font-weight: 700; line-height: 19px; display: inline-block; height: auto; padding-left: 0px; cursor: pointer; vertical-align: middle; color: inherit; background-repeat: no-repeat; margin-bottom: 0; position: relative; color: #29aa6a; } .wq-quiz.wq-skin-flat .wq_singleAnswerCtr { background-color: #fff; color: var(--wq-font-color, #ddd); border: 2px solid #29aa6a; padding: 10px 0px; margin: 0 20px 20px 0; border-radius: 0px; line-height: 50px; text-align: center; } .wq_quizProgressBar>span { line-height: 16px; position: relative; display: block; float: left; overflow: hidden; box-sizing: border-box; width: 10px; min-width: 30px; height: 100%; margin: 0 -1px; padding: 0 5px; text-align: right; border: 1px solid; border-color: rgba(0,0,0,0.05) rgba(0,0,0,0.2) rgba(0,0,0,0.3); border-radius: 0px; background-color: var(--wq-bar-color, #85c440); box-shadow: inset 0 0px rgb(255 255 255 / 30%), 0 1px 2px rgb(0 0 0 / 20%); } .wq_quizProgressBar { font-size: 12px; line-height: 1.285; position: relative; box-sizing: initial; width: 100%; height: 18px; margin: 0 1px; text-align: center; color: #fff; border-radius: 0px; background-color: #ebebeb; box-shadow: inset 0 1px 1px rgb(100 100 100 / 10%); } .single .heading-title { padding-bottom: 0px; border-bottom: 0px solid #DDD; margin-bottom: 0px; padding-top: 20px } .wq-quiz.wq-skin-flat .wq_singleAnswerCtr:hover { background: #fff; color: #fff; border: 4px solid #29aa6a; transition: background 550ms ease-out; cursor: pointer; } .wq_singleAnswerCtr .wq_answerTxtCtr:before, .wq_singleAnswerCtr.chosen .wq_answerTxtCtr:after { content: ""; width: 18px; height: 18px; border: 0px solid; position: absolute; left: 0; top: 0px; border-radius: 2px; box-sizing: border-box; } } .wq-quiz.wq-skin-flat .wq-results { background: #fff; border-color: #29aa6a; border-radius: 0px; } .wq-results, .wq_continue, .wq-result { display:; } .wq-results { font-size: 15px; box-sizing: border-box; width: 100%; margin: 20px 0 20px; padding: 10px 20px 20px 20px; border: 2px solid #29aa6a; background: #f9f9f9; } .wq_shareCtr p, .wq_questionLogin p { margin-top: 20px; } .wq-results .wq_quizTitle { display: block; margin-bottom: 10px; font-weight: 700; color: #1e73be; } .wq-quiz.wq-skin-flat .wq_singleAnswerCtr:hover, .wq-quiz.wq-skin-flat .wq_singleAnswerCtr.chosen, .wq-quiz.wq-skin-flat .wq_singleAnswerCtr.wq_answerSelected { background: #fff; color: #444; border: 2px solid #29aa6a; transition: background 0ms ease-out; cursor: pointer; } img.wq_resultImg { width: 20%; } .col-md-wq-4:last-child { float: left !important; margin-right: -16px !important; } .col-md-wq-4 { width: 33.09%; } .wq-quiz.wq-skin-flat .wq-results { background: #fff; border-color: #fff; border-radius: 3px; } .wq-quiz.wq-skin-flat .wq_singleAnswerCtr .wq_answerTxtCtr { word-break: break-word; text-align: center; } .wq_questionTextCtr { float: left; padding: 0px 0px; background: #eee; box-sizing: border-box; text-align: center; } .header-image-wiki { max-height: 400px!important; width: 800px!important; object-fit: cover; } @media (max-width: 600px){ .header-image-wiki { height: auto !important; } } .post-type-archive-samenwerking img.header_afbeelding{ width: 382px; height: 244px; object-fit: cover; } .image-object-fit{ height: 320px; object-fit: cover; } p#breadcrumbs { padding-top: 40px; } .main-content table { margin: 0 0 20px; padding: 0; width: 100%; border-collapse: collapse; border-spacing: 0; background-color: #29aa6a; border-top: 1px solid #ececec; } /* .gform_wrapper *, .gform_wrapper :after, .gform_wrapper :before { box-sizing: border-box!important; background-color: #29aa6a; color: #fff; } */ .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select { margin-left: 1px; background-color: #fff; color: #555; } .gform_wrapper .validation_message { color: #fff; font-weight: 700; letter-spacing: normal; } .gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning { background-color: transparent; margin-bottom: 6px!important; border-top: 0px solid #c89797; border-bottom: 0px solid #c89797; padding-bottom: 6px; padding-top: 8px; box-sizing: border-box; } .gform_wrapper .gfield_error .gfield_label { color: #fff; } input[type=submit], button[type=submit], input[type="button"] { font-family: 'PT Sans'; font-weight: 600; } /* .gform_wrapper *, .gform_wrapper :after, .gform_wrapper :before { box-sizing: border-box!important; background-color: #29aa6a; color: #fff; } */ body .gform_wrapper { background-color: #29aa6a; } .gform_wrapper.gf_browser_chrome select { padding: 6px 0px 7px 3px; } .gform_wrapper .ginput_complex span.ginput_left.address_country { width: 100% } .img-set-width { object-fit: cover; } figcaption { display: table-caption; caption-side: bottom; text-align: center; font-size: x-small; } span.isc-source_ > span.isc-source-text_ { background: rgba(0, 0, 0, 0.1); } .nieuwsbrief-footer.widget.widget_custom_html { background-color: #29aa6a; padding-top: 20px; padding-left: 30px; padding-bottom: 20px; padding-right: 30px; } @media screen and (min-width: 770px) .buttonizer-group.group-0-0-1 { display: none; } @media screen and (min-width: 769px) @media screen and (min-width: 769px) @media (max-width: 1150px) and (min-width: 600px) .img-with-aniamtion-wrap > .inner { height: 0px !important; } @media only screen and (max-width: 690px) .wpb_column.top_margin_phone_466px { margin-top: 350px!important; } .db_blog_right_date .db_agenda_date { display: block !important; overflow: hidden !important; background: #29aa6a url(/wp-content/plugins/db_extended_blog/img/icon-calender.png) no-repeat 8px 6px !important; margin: 10px 80px 20px 80px !important; padding: 0px !important; text-align: center !important; color: #fff !important; font-size: 15px !important; font-weight: bold !important; box-shadow: none !important; background-size: none !important; align-items: center; } .sf-sub-indicator [class^="icon-"], body .sf-sub-indicator [class*=" icon-"] { color: #888; font-size: 12px; line-height: 29px; height: auto; background-color: transparent; } .gform_wrapper *, .gform_wrapper :after, .gform_wrapper :before .th .td { background-color: #29aa6a; border-bottom: 1px solid #DFDFDF; border-right: 1px solid #DFDFDF; padding: 7px; font-family: sans-serif; font-size: 12px; text-align: left; } body:not(.woocommerce-cart) .main-content table tr:nth-child(2n+1){ background-color:#29aa6a } :not(#\ ):not(#\ ):not(#\ ).buttonizer-label { font-weight: 900; } .main-content > .row > #breadcrumbs.yoast { padding-top: 60px; } .gform_wrapper textarea.medium { color: #555; } a.map-it-link { display: none; } .fa.fa-youtube-play:before { content: "\f167"; margin-left: -1px; } div#gform_confirmation_message_3 { color: #fff; } /* Enquête */ .page-id-11235 .gform_legacy_markup_wrapper .gf_progressbar_percentage.percentbar_blue { background-color: #0071aa; color: #fff; } .gform_legacy_markup_wrapper .gf_progressbar_wrapper { padding: 0 40px 0!important; } .page-id-11235 .gform_legacy_markup_wrapper .gf_progressbar_wrapper .gf_progressbar_title { /* padding: 10px 40px 0!important; */ padding-top: 20px!important; color: #fff!important; -moz-opacity: 1; -khtml-opacity: 1; opacity: 1; } .gform_legacy_markup_wrapper .gf_progressbar_wrapper { margin: none!important; padding: 0 0px 0!important; } @media only screen and (max-width: 641px){ .page-id-11235 .gform_page_footer.top_label{ display: flex; flex-direction: column-reverse; } input#gform_previous_button_22_26, input#gform_next_button_22_26{ height: auto; } .gform_legacy_markup_wrapper .gf_progressbar_wrapper { padding: 0 30px 0!important; } .gform_legacy_markup_wrapper .gf_progressbar_percentage span { float: none!important; } .page-id-11235 .gform_legacy_markup_wrapper ul li:after, .gform_legacy_markup_wrapper ul li:before, .gform_legacy_markup_wrapper ul.gform_fields { padding: 0px 30px !important; } .page-id-11235 .gform_legacy_markup_wrapper .gform_page_footer { padding: 16px!important; } } @media only screen and (min-width: 641px){ .page-id-11235 .gform_legacy_markup_wrapper ul li:after, .gform_legacy_markup_wrapper ul li:before, .gform_legacy_markup_wrapper ul.gform_fields { padding: 0px 40px !important; } .page-id-11235 .gform_legacy_markup_wrapper .gform_page_footer { padding: 25px 0 20px 40px!important; } } @media only screen and (min-width: 641px){ h3.gf_progressbar_title{ padding: 40px; } .gform_legacy_markup_wrapper .gf_progressbar { width: auto!important; } } input.large{ background-color: #fff!important; } .page-id-11235 a:link,.page-id-11235 a:visited,.page-id-11235 a:hover,.page-id-11235 a:active{ color: #0071aa; } a.white-text-hover:hover{ color: white;!important } #field_22_123 label, #field_22_81 label.gfield_label.gfield_label_before_complex, #field_22_122 label, #field_22_92 label.gfield_label.gfield_label_before_complex{ display: none; } input#input_7_23, input#input_7_1{ background-color: #fff!important; color: #555; } @media screen and (max-width: 640px) { .gform_previous_button{ color: blue; } } } .page-id-11499 h1.db_blog_title { display: none!important; } .gfield_consent_label a, #label_9_56_2 a{ font-weight: bold; color: white; text-decoration: underline; } .page-id-9689 span.isc-source { width: 50% !important; } .page-id-10292 a { color: #fff; font-weight: 800; } .page-id-10292 .form_saved_message { padding: 20px; } .page-id-10292 form#gform_26 { padding: 20px } a.resume_form_link { color: white; font-weight: bold; } .gform_wrapper.gravity-theme .gform_previous_button.button, .gform_wrapper.gravity-theme .gform_save_link.button { -webkit-appearance: none!important; background-color: #333; color: #fff; text-decoration: none; border: 0; padding: 15px; font-weight: bold; } img.img-with-animation.skip-lazy.header-image-wiki.animated-in { position: relative !important; display: block !important; width: 100% !important; padding-bottom: 0px !important; } form#gform_27{ padding: 20px; } .ajax-content-wrap,.container.main-content{ margin-top: 3%!important; } .page-id-6220 .container.main-content,.page-id-6243 .container.main-content{ margin-top: 0%!important; } #gform_submit_button_30{ margin-top:0px; padding-top:0px; background-color: #ffffff; color: #29aa6a; border: 2px solid #ffffff !important; font-size: 16px; padding: 4px 10px 4px 10px; margin-top: 10px; font-family: PT Sans; font-weight: bold; } #gform_submit_button_30:hover{ background-color: #29aa6a; color: #ffffff; border: 2px solid #29aa6a !important; font-size: 16px; padding: 4px 10px 4px 10px; margin-top: 10px; } .page-id-14978 .gform_wrapper form{ margin: 0 auto; } #gform_30{ padding: 6%; } input#input_30_8 { width: 100%; } .page-id-14978 .wpb_column.column_container.vc_column_container.col.child_column.no-extra-padding{ width: 41%; } .page-id-14978 .ginput_container.ginput_container_email{ width: 200%; } .row .col img{ margin-bottom: 15px; max-width: 100%; height: 233px; max-height: 233px; object-fit: cover; } div#header-secondary-outer { z-index: 99 !important; } span.isc-source-text_{ margin-bottom: 0px!important; } .db_icon_calender img { height: 16px !important; } .page-id-15019 .wpb_wrapper img , .page-id-14933 .wpb_wrapper img { margin-bottom: 15px; max-width: 100%; height: auto!important; max-height: 233px; object-fit: contain; } figure.wp-block-gallery.has-nested-images.columns-default.is-cropped{ padding-bottom: 40px; } .wp-block-gallery.has-nested-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; } figure.wp-block-image.size-large{ width: 100%!important; } .wp-block-gallery.has-nested-images img { width: 100%; height: auto; display: block; } @media (max-width: 768px) { .wp-block-gallery.has-nested-images { grid-template-columns: 1fr; } } img.banneronder{ object-fit: contain!important; } #gform_fields_33 label{ font-size: 16px!important; } .page-id-15835 div#page-header-wrap, .page-id-15835 div#page-header-bg{ height: 639px!important; } i.icons-contact { font-size: 15px !important; top: -5px; right: -4px !important; color: white !important; } </style> <style type="text/css" data-type="vc_shortcodes-custom-css">.vc_custom_1619191865015{padding-bottom: 40px !important;}.vc_custom_1619191795187{padding-bottom: 20px !important;}.vc_custom_1619191836105{padding-bottom: 20px !important;}</style><noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head><body class="page-template-default page page-id-6272 page-child parent-pageid-6234 ascend wpb-js-composer js-comp-ver-6.6.0 vc_responsive hoger-onderwijs" data-footer-reveal="false" data-footer-reveal-shadow="none" data-header-format="centered-menu-under-logo" data-body-border="off" data-boxed-style="" data-header-breakpoint="1000" data-dropdown-style="minimal" data-cae="easeOutQuart" data-cad="700" data-megamenu-width="full-width" data-aie="zoom-out" data-ls="magnific" data-apte="standard" data-hhun="0" data-fancy-form-rcs="default" data-form-style="default" data-form-submit="default" data-is="minimal" data-button-style="default" data-user-account-button="false" data-flex-cols="true" data-col-gap="default" data-header-inherit-rc="false" data-header-search="false" data-animated-anchors="true" data-ajax-transitions="false" data-full-width-header="false" data-slide-out-widget-area="true" data-slide-out-widget-area-style="simple" data-user-set-ocm="off" data-loading-animation="none" data-bg-header="false" data-responsive="1" data-ext-responsive="true" data-ext-padding="90" data-header-resize="1" data-header-color="custom" data-transparent-header="false" data-cart="false" data-remove-m-parallax="" data-remove-m-video-bgs="" data-m-animate="0" data-force-header-trans-color="light" data-smooth-scrolling="0" data-permanent-transparent="false" > <script type="text/javascript"> (function(window, document) { if(navigator.userAgent.match(/(Android|iPod|iPhone|iPad|BlackBerry|IEMobile|Opera Mini)/)) { document.body.className += " using-mobile-browser "; } if( !("ontouchstart" in window) ) { var body = document.querySelector("body"); var winW = window.innerWidth; var bodyW = body.clientWidth; if (winW > bodyW + 4) { body.setAttribute("style", "--scroll-bar-w: " + (winW - bodyW - 4) + "px"); } else { body.setAttribute("style", "--scroll-bar-w: 0px"); } } })(window, document); </script><a href="#ajax-content-wrap" class="nectar-skip-to-content">Skip to main content</a> <div id="header-space" data-header-mobile-fixed='1'></div> <div id="header-outer" data-has-menu="true" data-has-buttons="no" data-header-button_style="default" data-using-pr-menu="false" data-mobile-fixed="1" data-ptnm="false" data-lhe="animated_underline" data-user-set-bg="#ffffff" data-format="centered-menu-under-logo" data-permanent-transparent="false" data-megamenu-rt="1" data-remove-fixed="0" data-header-resize="1" data-cart="false" data-transparency-option="0" data-box-shadow="small" data-shrink-num="50" data-using-secondary="1" data-using-logo="1" data-logo-height="123" data-m-logo-height="40" data-padding="30" data-full-width="false" data-condense="false" > <div id="header-secondary-outer" class="centered-menu-under-logo" data-mobile="default" data-remove-fixed="0" data-lhe="animated_underline" data-secondary-text="false" data-full-width="false" data-mobile-fixed="1" data-permanent-transparent="false" > <div class="container"> <!-- Telefoonnummer met icon --> <div id="telefoon-header"> <i class="fas fa-phone"></i> <span class="nummer"><a target="_blank" rel="noopener noreferrer nofollow" href="tel:+31303200238">+31 (0)30 - 320 02 38</a></span> </div> <nav> <!-- Wikipedia social icon --> <ul id="social"> <li> <a target="_blank" rel="noopener noreferrer nofollow" href="https://nl.wikipedia.org/"> <i class="fab fa-wikipedia-w"></i> </a> </li> </ul> <ul id="social"> <li> <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.facebook.com/WikimediaNL"> <i class="fa fa-facebook"></i> </a> </li> <li> <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.instagram.com/wikimedia_nederland/"> <i class="fa fa-instagram" style="padding: 0px 0px 0px 2px!important;"></i> </a> </li> <li> <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.linkedin.com/company/1345268/"> <i class="fa fa-linkedin"></i> </a> </li> <li> <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.youtube.com/channel/UCv60EXP08A3bJ6RTmt_ObYQ"> <i class="fa fa-youtube-play"></i> </a> </li> <li> <a target="_blank" rel="noopener noreferrer nofollow" href="https://bsky.app/profile/wikimedianederland.bsky.social"> <svg width="15" height="15" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="#ffffff" d="M407.8 294.7c-3.3-.4-6.7-.8-10-1.3c3.4 .4 6.7 .9 10 1.3zM288 227.1C261.9 176.4 190.9 81.9 124.9 35.3C61.6-9.4 37.5-1.7 21.6 5.5C3.3 13.8 0 41.9 0 58.4S9.1 194 15 213.9c19.5 65.7 89.1 87.9 153.2 80.7c3.3-.5 6.6-.9 10-1.4c-3.3 .5-6.6 1-10 1.4C74.3 308.6-9.1 342.8 100.3 464.5C220.6 589.1 265.1 437.8 288 361.1c22.9 76.7 49.2 222.5 185.6 103.4c102.4-103.4 28.1-156-65.8-169.9c-3.3-.4-6.7-.8-10-1.3c3.4 .4 6.7 .9 10 1.3c64.1 7.1 133.6-15.1 153.2-80.7C566.9 194 576 75 576 58.4s-3.3-44.7-21.6-52.9c-15.8-7.1-40-14.9-103.2 29.8C385.1 81.9 314.1 176.4 288 227.1z"></path></svg> </a> </li> <li> <a target="_blank" rel="noopener noreferrer nofollow" href="/feed/rss/"> <i class="fa fa-rss"></i> </a> </li> </ul> <!-- <ul id="social"><li><a target="_blank" href="https://twitter.com/wmnl"><span class="screen-reader-text">twitter</span><i class="fa fa-twitter" aria-hidden="true"></i> </a></li><li><a target="_blank" href="https://www.facebook.com/WikimediaNL"><span class="screen-reader-text">facebook</span><i class="fa fa-facebook" aria-hidden="true"></i> </a></li><li><a target="_blank" href="https://www.linkedin.com/company/1345268/"><span class="screen-reader-text">linkedin</span><i class="fa fa-linkedin" aria-hidden="true"></i> </a></li><li><a target="_blank" href="https://www.youtube.com/channel/UCv60EXP08A3bJ6RTmt_ObYQ"><span class="screen-reader-text">youtube</span><i class="fa fa-youtube-play" aria-hidden="true"></i> </a></li><li><a target="_blank" href="https://www.wikimedia.nl/feed/rss/"><span class="screen-reader-text">RSS</span><i class="fa fa-rss" aria-hidden="true"></i> </a></li></ul> --> <form role="search" method="get" class="search-form" action="/"> <input placeholder="zoek" type="text" class="search-field" value="" name="s" title="Zoek naar:"> <button type="submit" class="search-widget-btn no-hover"> <i type="submit" class="fas fa-search"></i> <!-- <span class="normal icon-salient-search" aria-hidden="true"></span> --> </button> </form> <a class="about-us-link" href="/about-us/">About us (EN)</a> </nav> </div> </div> <!-- Ik steun Wikimedia button --> <!-- <div class="buttonizer buttonizer-group group-0-0-1 steun-wikimedia-cta"> <a class="buttonizer-button button-0-0-9 steun-wikimedia-cta buttonizer-head" href="#"> <i class="fas fa-plus icon-0-0-10"></i> </a> <a rel="nofollow" href="/steun-wikimedia-nederland/" class="buttonizer-button button-0-0-3 steun-wikimedia-cta"> <img src="" class="wiki-steun-button-img"> <!-- IMG source = </wp-content/uploads/2021/02/steun_wikimedia_cta.jpg> --> <!-- </a> </div> --> <header id="top"> <div class="container"> <div class="row"> <div class="col span_3"> <a id="logo" href="https://www.wikimedia.nl" data-supplied-ml-starting-dark="false" data-supplied-ml-starting="false" data-supplied-ml="true" > <img class="stnd skip-lazy" width="500" height="500" alt="Wikimedia Nederland" src="https://www.wikimedia.nl/wp-content/uploads/2021/05/Wikimedianederland-logo.png" /><img class="mobile-only-logo skip-lazy" alt="Wikimedia Nederland" width="1198" height="1198" src="https://www.wikimedia.nl/wp-content/uploads/2021/06/Wikimedia-logo.png" /> </a> </div><!--/span_3--> <div class="col span_9 col_last"> <div class="slide-out-widget-area-toggle mobile-icon simple" data-custom-color="false" data-icon-animation="simple-transform"> <div> <a href="#sidewidgetarea" aria-label="Navigation Menu" aria-expanded="false" class="closed"> <span class="screen-reader-text">Menu</span><span aria-hidden="true"> <i class="lines-button x2"> <i class="lines"></i> </i> </span> </a></div> </div> <nav> <ul class="sf-menu"> <li id="menu-item-6252" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children nectar-regular-menu-item menu-item-6252"><a href="https://www.wikimedia.nl/wat-wij-doen/"><span class="menu-title-text">Wat wij doen</span></a> <ul class="sub-menu"> <li id="menu-item-9641" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children nectar-regular-menu-item menu-item-9641"><a><span class="menu-title-text">Projecten</span><span class="sf-sub-indicator"><i class="fa fa-angle-right icon-in-menu" aria-hidden="true"></i></span></a> <ul class="sub-menu"> <li id="menu-item-6616" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6616"><a href="https://www.wikimedia.nl/wat-wij-doen/gendergap/"><span class="menu-title-text">Gendergap</span></a></li> <li id="menu-item-6615" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6615"><a href="https://www.wikimedia.nl/wat-wij-doen/nl-de-wereld/"><span class="menu-title-text">NL &#038; de wereld</span></a></li> <li id="menu-item-6614" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6614"><a href="https://www.wikimedia.nl/wat-wij-doen/wiki-goes-caribbean/"><span class="menu-title-text">Wiki goes Caribbean</span></a></li> <li id="menu-item-11506" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-11506"><a href="https://www.wikimedia.nl/wat-wij-doen/wiki-loves-monuments/"><span class="menu-title-text">Wiki Loves Monuments</span></a></li> </ul> </li> <li id="menu-item-6613" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6613"><a href="https://www.wikimedia.nl/wat-wij-doen/ondersteuning-wikimedia/"><span class="menu-title-text">Ondersteuning Wikimedia</span></a></li> <li id="menu-item-6612" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6612"><a href="https://www.wikimedia.nl/wat-wij-doen/lobby/"><span class="menu-title-text">Lobby</span></a></li> <li id="menu-item-6611" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6611"><a href="https://www.wikimedia.nl/wat-wij-doen/trainingen-workshops/"><span class="menu-title-text">Trainingen / Workshops</span></a></li> <li id="menu-item-6610" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6610"><a href="https://www.wikimedia.nl/wat-wij-doen/samenwerken-met-partners/"><span class="menu-title-text">Samenwerken met Partners</span></a></li> </ul> </li> <li id="menu-item-6250" class="menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current-menu-parent current-page-parent current_page_parent current_page_ancestor menu-item-has-children nectar-regular-menu-item menu-item-6250"><a href="https://www.wikimedia.nl/samenwerken/"><span class="menu-title-text">Met ons samenwerken?</span></a> <ul class="sub-menu"> <li id="menu-item-6291" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6291"><a href="https://www.wikimedia.nl/samenwerken/erfgoed/"><span class="menu-title-text">Erfgoed</span></a></li> <li id="menu-item-6290" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6290"><a href="https://www.wikimedia.nl/samenwerken/bibliotheken/"><span class="menu-title-text">Bibliotheken</span></a></li> <li id="menu-item-6292" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-6272 current_page_item nectar-regular-menu-item menu-item-6292"><a href="https://www.wikimedia.nl/samenwerken/hoger-onderwijs/" aria-current="page"><span class="menu-title-text">Hoger onderwijs</span></a></li> <li id="menu-item-6289" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6289"><a href="https://www.wikimedia.nl/samenwerken/anders/"><span class="menu-title-text">Anders</span></a></li> <li id="menu-item-6293" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6293"><a href="https://www.wikimedia.nl/samenwerkingsvoorbeelden/"><span class="menu-title-text">Samenwerkingsvoorbeelden</span></a></li> </ul> </li> <li id="menu-item-6254" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children nectar-regular-menu-item menu-item-6254"><a href="https://www.wikimedia.nl/wikiplatforms/"><span class="menu-title-text">Wikipedia &#038; meer</span></a> <ul class="sub-menu"> <li id="menu-item-6383" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6383"><a href="https://www.wikimedia.nl/wikiplatforms/wikipedia/"><span class="menu-title-text">Wikipedia</span></a></li> <li id="menu-item-6570" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6570"><a href="https://www.wikimedia.nl/wikiplatforms/wikidata/"><span class="menu-title-text">Wikidata</span></a></li> <li id="menu-item-6382" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6382"><a href="https://www.wikimedia.nl/wikiplatforms/wikimedia-commons/"><span class="menu-title-text">Wikimedia Commons</span></a></li> <li id="menu-item-6381" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6381"><a href="https://www.wikimedia.nl/wikiplatforms/wikisource/"><span class="menu-title-text">Wikisource</span></a></li> <li id="menu-item-6380" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6380"><a href="https://www.wikimedia.nl/wikiplatforms/wikiwoordenboek/"><span class="menu-title-text">Wikiwoordenboek</span></a></li> <li id="menu-item-6379" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6379"><a href="https://www.wikimedia.nl/wikiplatforms/wikinieuws/"><span class="menu-title-text">Wikinieuws</span></a></li> <li id="menu-item-6378" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6378"><a href="https://www.wikimedia.nl/wikiplatforms/overige-wiki-platforms/"><span class="menu-title-text">Overige wiki-platforms</span></a></li> </ul> </li> <li id="menu-item-6251" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children nectar-regular-menu-item menu-item-6251"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/"><span class="menu-title-text">Steun Wikimedia Nederland</span></a> <ul class="sub-menu"> <li id="menu-item-7691" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-7691"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/doneren/"><span class="menu-title-text">Doneren</span></a></li> <li id="menu-item-7690" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-7690"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/lid-worden/"><span class="menu-title-text">Lid worden</span></a></li> <li id="menu-item-7689" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-7689"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/periodiek-schenken/"><span class="menu-title-text">Periodiek schenken</span></a></li> <li id="menu-item-7688" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-7688"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/nalaten/"><span class="menu-title-text">Nalaten</span></a></li> <li id="menu-item-7687" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-7687"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/vrijwilliger-worden/"><span class="menu-title-text">Vrijwilliger worden</span></a></li> </ul> </li> <li id="menu-item-6608" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children nectar-regular-menu-item menu-item-6608"><a href="https://www.wikimedia.nl/wie-wij-zijn/"><span class="menu-title-text">Wie wij zijn</span></a> <ul class="sub-menu"> <li id="menu-item-7521" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-7521"><a href="https://www.wikimedia.nl/wie-wij-zijn/missie-en-visie/"><span class="menu-title-text">Missie en visie</span></a></li> <li id="menu-item-6609" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6609"><a href="https://www.wikimedia.nl/wie-wij-zijn/vacatures/"><span class="menu-title-text">Vacatures</span></a></li> <li id="menu-item-6253" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6253"><a href="https://www.wikimedia.nl/wie-wij-zijn/wie-is-wie/"><span class="menu-title-text">Wie is wie</span></a></li> </ul> </li> <li id="menu-item-6248" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children nectar-regular-menu-item menu-item-6248"><a href="https://www.wikimedia.nl/actueel/"><span class="menu-title-text">Actueel</span></a> <ul class="sub-menu"> <li id="menu-item-6663" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6663"><a href="https://www.wikimedia.nl/actueel/agenda/"><span class="menu-title-text">Agenda</span></a></li> <li id="menu-item-6659" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6659"><a href="https://www.wikimedia.nl/actueel/blog/"><span class="menu-title-text">Blog</span></a></li> <li id="menu-item-6661" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6661"><a href="https://www.wikimedia.nl/actueel/nieuws/"><span class="menu-title-text">Nieuws</span></a></li> <li id="menu-item-6662" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6662"><a href="https://www.wikimedia.nl/actueel/nieuwsbrief/"><span class="menu-title-text">Nieuwsbrief</span></a></li> <li id="menu-item-6660" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6660"><a href="https://www.wikimedia.nl/actueel/persberichten/"><span class="menu-title-text">Persberichten</span></a></li> <li id="menu-item-9692" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-9692"><a href="https://www.wikimedia.nl/actueel/jaarverslag/"><span class="menu-title-text">Jaarverslag</span></a></li> </ul> </li> <li id="menu-item-6249" class="menu-item menu-item-type-post_type menu-item-object-page nectar-regular-menu-item menu-item-6249"><a href="https://www.wikimedia.nl/contact/"><span class="menu-title-text">Contact</span></a></li> </ul> <ul class="buttons sf-menu" data-user-set-ocm="off"> </ul> </nav> </div><!--/span_9--> </div><!--/row--> <div id="mobile-menu" data-mobile-fixed="1"> <div class="inner"> <div class="menu-items-wrap" data-has-secondary-text="false"> <ul> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6252"><a href="https://www.wikimedia.nl/wat-wij-doen/">Wat wij doen</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-9641"><a>Projecten</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6616"><a href="https://www.wikimedia.nl/wat-wij-doen/gendergap/">Gendergap</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6615"><a href="https://www.wikimedia.nl/wat-wij-doen/nl-de-wereld/">NL &#038; de wereld</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6614"><a href="https://www.wikimedia.nl/wat-wij-doen/wiki-goes-caribbean/">Wiki goes Caribbean</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11506"><a href="https://www.wikimedia.nl/wat-wij-doen/wiki-loves-monuments/">Wiki Loves Monuments</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6613"><a href="https://www.wikimedia.nl/wat-wij-doen/ondersteuning-wikimedia/">Ondersteuning Wikimedia</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6612"><a href="https://www.wikimedia.nl/wat-wij-doen/lobby/">Lobby</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6611"><a href="https://www.wikimedia.nl/wat-wij-doen/trainingen-workshops/">Trainingen / Workshops</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6610"><a href="https://www.wikimedia.nl/wat-wij-doen/samenwerken-met-partners/">Samenwerken met Partners</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current-menu-parent current-page-parent current_page_parent current_page_ancestor menu-item-has-children menu-item-6250"><a href="https://www.wikimedia.nl/samenwerken/">Met ons samenwerken?</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6291"><a href="https://www.wikimedia.nl/samenwerken/erfgoed/">Erfgoed</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6290"><a href="https://www.wikimedia.nl/samenwerken/bibliotheken/">Bibliotheken</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-6272 current_page_item menu-item-6292"><a href="https://www.wikimedia.nl/samenwerken/hoger-onderwijs/" aria-current="page">Hoger onderwijs</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6289"><a href="https://www.wikimedia.nl/samenwerken/anders/">Anders</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6293"><a href="https://www.wikimedia.nl/samenwerkingsvoorbeelden/">Samenwerkingsvoorbeelden</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6254"><a href="https://www.wikimedia.nl/wikiplatforms/">Wikipedia &#038; meer</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6383"><a href="https://www.wikimedia.nl/wikiplatforms/wikipedia/">Wikipedia</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6570"><a href="https://www.wikimedia.nl/wikiplatforms/wikidata/">Wikidata</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6382"><a href="https://www.wikimedia.nl/wikiplatforms/wikimedia-commons/">Wikimedia Commons</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6381"><a href="https://www.wikimedia.nl/wikiplatforms/wikisource/">Wikisource</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6380"><a href="https://www.wikimedia.nl/wikiplatforms/wikiwoordenboek/">Wikiwoordenboek</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6379"><a href="https://www.wikimedia.nl/wikiplatforms/wikinieuws/">Wikinieuws</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6378"><a href="https://www.wikimedia.nl/wikiplatforms/overige-wiki-platforms/">Overige wiki-platforms</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6251"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/">Steun Wikimedia Nederland</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7691"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/doneren/">Doneren</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7690"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/lid-worden/">Lid worden</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7689"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/periodiek-schenken/">Periodiek schenken</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7688"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/nalaten/">Nalaten</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7687"><a href="https://www.wikimedia.nl/steun-wikimedia-nederland/vrijwilliger-worden/">Vrijwilliger worden</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6608"><a href="https://www.wikimedia.nl/wie-wij-zijn/">Wie wij zijn</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7521"><a href="https://www.wikimedia.nl/wie-wij-zijn/missie-en-visie/">Missie en visie</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6609"><a href="https://www.wikimedia.nl/wie-wij-zijn/vacatures/">Vacatures</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6253"><a href="https://www.wikimedia.nl/wie-wij-zijn/wie-is-wie/">Wie is wie</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-6248"><a href="https://www.wikimedia.nl/actueel/">Actueel</a> <ul class="sub-menu"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6663"><a href="https://www.wikimedia.nl/actueel/agenda/">Agenda</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6659"><a href="https://www.wikimedia.nl/actueel/blog/">Blog</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6661"><a href="https://www.wikimedia.nl/actueel/nieuws/">Nieuws</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6662"><a href="https://www.wikimedia.nl/actueel/nieuwsbrief/">Nieuwsbrief</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6660"><a href="https://www.wikimedia.nl/actueel/persberichten/">Persberichten</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9692"><a href="https://www.wikimedia.nl/actueel/jaarverslag/">Jaarverslag</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6249"><a href="https://www.wikimedia.nl/contact/">Contact</a></li> </ul> </div><!--/menu-items-wrap--> <div class="below-menu-items-wrap"> </div><!--/below-menu-items-wrap--> <form role="search" method="get" class="search-form mobile-search-form" action="/"> <input placeholder="zoek" type="text" class="search-field" value="" name="s" title="Zoek naar:"> <button type="submit" class="search-widget-btn no-hover"> <i type="submit" class="fas fa-search"></i> <!-- <span class="normal icon-salient-search" aria-hidden="true"></span> --> </button> </form> </div><!--/inner--> </div><!--/mobile-menu--> </div><!--/container--> </header> </div> <div id="search-outer" class="nectar"> <div id="search"> <div class="container"> <div id="search-box"> <div class="inner-wrap"> <div class="col span_12"> <form role="search" action="https://www.wikimedia.nl/" method="GET"> <input type="text" name="s" value="Start Typing..." aria-label="Search" data-placeholder="Start Typing..." /> <span><i>Press enter to begin your search</i></span> </form> </div><!--/span_12--> </div><!--/inner-wrap--> </div><!--/search-box--> <div id="close"><a href="#"><span class="screen-reader-text">Close Search</span> <span class="icon-salient-x" aria-hidden="true"></span> </a></div> </div><!--/container--> </div><!--/search--> </div><!--/search-outer--> <div id="ajax-content-wrap"> <div class="container-wrap"> <div class="container main-content"> <div class="row"> <div id="fws_67b3f27c0458a" data-column-margin="default" data-midnight="dark" class="wpb_row vc_row-fluid vc_row top-level " style="padding-top: 0px; padding-bottom: 0px; "><div class="row-bg-wrap" data-bg-animation="none" data-bg-overlay="false"><div class="inner-wrap"><div class="row-bg" style=""></div></div></div><div class="row_col_wrap_12 col span_12 dark left"> <div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" > <div class="vc_column-inner" > <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> </div> </div> </div> </div> </div> </div></div> <div id="fws_67b3f27c05246" data-column-margin="default" data-midnight="dark" class="wpb_row vc_row-fluid vc_row " style="padding-top: 0px; padding-bottom: 0px; "><div class="row-bg-wrap" data-bg-animation="none" data-bg-overlay="false"><div class="inner-wrap"><div class="row-bg" style=""></div></div></div><div class="row_col_wrap_12 col span_12 dark left"> <div class="vc_col-sm-8 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" > <div class="vc_column-inner" > <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element vc_custom_1619191865015" > <div class="wpb_wrapper"> <h1 style="font-size: 35px; color: #29aa6a;"><strong>Hoger onderwijs</strong></h1> <p>Wereldwijd raakt het hoger onderwijs steeds meer geïnteresseerd in samenwerking met Wikipedia. Docenten ontdekken dat inhoud toevoegen aan Wikipedia een interessante werkvorm is. Studenten verbeteren hun onderzoeks-, schrijf- en digitale vaardigheden, en dragen concreet bij aan het grootste samenwerkingsproject op het gebied van kennis ooit: Wikipedia. Studenten kunnen ook bijdragen door het maken van illustraties, geluids- of beeldopnamen, of vertalingen.</p> <p>Wij bieden hogescholen en universiteiten ondersteuning bij het organiseren van activiteiten rondom Wikipedia. Hierbij valt te denken aan:</p> </div> </div> <div class="wpb_text_column wpb_content_element vc_custom_1619191795187" > <div class="wpb_wrapper"> <h2 style="color: #25669c; font-size: 24px;">Wikipedia of Wikidata bewerken als onderdeel van een collegereeks</h2> <p>Hierbij kan de nadruk liggen op het schrijven van artikelen op Wikipedia. Wat is nodig om een artikel op Wikipedia te kunnen schrijven? Wat zijn aandachtspunten? Aan de hand van praktijkvoorbeelden kunnen wij deelnemers meer inzicht geven in het schrijfproces. Ook kunnen studenten hun vaardigheden in databeheer en -analyse oefenen door Wikidata-projecten te ontwikkelen.</p> </div> </div> <div class="wpb_text_column wpb_content_element vc_custom_1619191836105" > <div class="wpb_wrapper"> <h2 style="color: #25669c;">Een wiki-helpdesk of WikiCafé</h2> <p>Waar studenten en medewerkers (online) samen kunnen komen om te werken aan artikelen op Wikipedia en/of vragen kunnen stellen over zaken die ze tegenkomen bij het schrijven en verbeteren van artikelen.</p> </div> </div> <blockquote class="nectar_single_testimonial" data-color="default" data-style="small_modern"><div class="inner"> <p><span class="open-quote">&#8221;</span>In het hoger en universitair onderwijs werkt een schrijfopdracht voor Wikipedia dubbel motiverend: studenten moeten extra goed letten op de vorm, de bronnen, de degelijkheid van hun informatie; en tegelijkertijd zien ze ook direct dat hun researchopdracht ten dienste staat van het publiek. </p><span class="wrap"><span>Michiel van Kempen</span><span class="title">bijzonder hoogleraar Nederlands-Caraïbische letteren</span></span></div></blockquote> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <h2 style="color: #25669c;">Interesse om samen te werken?</h2> <p>Bekijk enkele <a href="/samenwerkingsvoorbeelden/?taxonomy_ids=57" rel="noopener">voorbeelden van samenwerking</a> of lees de <a href="/wp-content/uploads/2021/06/Educatie_op_Wikipedia.pdf" target="_blank" rel="noopener">brochure ‘Educatie op Wikipedia’</a>. We vertellen je graag meer over de mogelijkheden. Ook kunnen we een presentatie op maat geven binnen jouw onderwijsinstelling. Mail <a href="mailto:info@wikimedia.nl" target="_blank" rel="noopener">info@wikimedia.nl</a> of bel 030 3200238 voor meer meer informatie.</p> </div> </div> </div> </div> </div> <div class="vc_col-sm-4 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" > <div class="vc_column-inner" > <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <h4 style="color: #25669c; text-align: center;">Samenwerkingsvoorbeelden</h4> </div> </div> <div class="wpb_raw_code wpb_content_element wpb_raw_html" > <div class="wpb_wrapper"> <a class="db_banner_right" href="https://www.wikimedia.nl/actueel/samenwerking/educatieprogramma-universiteit-maastricht/" style="background: linear-gradient(transparent, rgba(0,0,0,.4)), url('https://www.wikimedia.nl/wp-content/uploads/2021/05/Maastricht_University-Parlour-430x140.jpg');">Educatieprogramma Universiteit Maastricht</a><a class="db_banner_right" href="https://www.wikimedia.nl/actueel/samenwerking/educatieprogramma-itv-hogeschool-voor-tolken-en-vertalers/" style="background: linear-gradient(transparent, rgba(0,0,0,.4)), url('https://www.wikimedia.nl/wp-content/uploads/2021/05/Vertaling1_1-430x140.jpg');">Educatieprogramma ITV Hogeschool voor Tolken en Vertalers</a><a class="db_banner_right" href="https://www.wikimedia.nl/actueel/samenwerking/schrijfweken-astronomie/" style="background: linear-gradient(transparent, rgba(0,0,0,.4)), url('https://www.wikimedia.nl/wp-content/uploads/2021/05/NGC891HunterWilson-430x140.jpg');">Schrijfweken Astronomie</a> </div> </div> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> <p style="font-size: 16px; text-align: right;"><u><a href="/samenwerkingsvoorbeelden/?taxonomy_ids=57">Alle samenwerkingen voor Hoger Onderwijs &gt;</a><u></u></u></p> </div> </div> </div> </div> </div> </div></div> <div id="fws_67b3f27c084d9" data-column-margin="default" data-midnight="dark" class="wpb_row vc_row-fluid vc_row " style="padding-top: 0px; padding-bottom: 0px; "><div class="row-bg-wrap" data-bg-animation="none" data-bg-overlay="false"><div class="inner-wrap"><div class="row-bg" style=""></div></div></div><div class="row_col_wrap_12 col span_12 dark left"> <div class="vc_col-sm-12 wpb_column column_container vc_column_container col no-extra-padding inherit_tablet inherit_phone " data-padding-pos="all" data-has-bg-color="false" data-bg-color="" data-bg-opacity="1" data-animation="" data-delay="0" > <div class="vc_column-inner" > <div class="wpb_wrapper"> <div class="wpb_text_column wpb_content_element " > <div class="wpb_wrapper"> </div> </div> </div> </div> </div> </div></div> </div> </div> </div> <div id="footer-outer" data-midnight="light" data-cols="4" data-custom-color="true" data-disable-copyright="false" data-matching-section-color="true" data-copyright-line="false" data-using-bg-img="false" data-bg-img-overlay="0.8" data-full-width="false" data-using-widget-area="true" data-link-hover="default"> <div id="footer-widgets" data-has-widgets="true" data-cols="4"> <div class="container"> <div class="row"> <div class="col span_3"> <div id="text-3" class="widget widget_text"> <div class="textwidget"><p style="color: #0071aa;">Contact</p> <p>Mariaplaats 3<br /> 3511 LH Utrecht<br /> <a href="tel:+31303200238">+31 (0)30 &#8211; 320 02 38</a></p> <p>&nbsp;</p> <p style="color: #0071aa;">IBAN: NL33 ABNA 0497164833<br /> KVK: 17189036<br /> RSIN: 816860191</p> </div> </div><div id="text-8" class="widget widget_text"> <div class="textwidget"><p><a style="display: none!important;" href="https://mastodon.nl/@Wikimedia_Nederland" rel="me">Mastodon</a></p> <div class="footer-widget-container"> <ul id="social" class="social-footer"> <li><a href="https://nl.wikipedia.org/" target="_blank" rel="noopener noreferrer nofollow"><br /> <i class="fab fa-wikipedia-w icon-footer2"></i><br /> </a></li> <li><a href="https://www.facebook.com/WikimediaNL" target="_blank" rel="noopener noreferrer nofollow"><br /> <i class="fa fa-facebook icon-footer"></i><br /> </a></li> <li><a href="https://www.instagram.com/wikimedia_nederland/" target="_blank" rel="noopener noreferrer nofollow"><br /> <i class="fa fa-instagram icon-footer"></i><br /> </a></li> <li><a href="https://www.linkedin.com/company/wikimedia-nederland/" target="_blank" rel="noopener noreferrer nofollow"><br /> <i class="fa fa-linkedin icon-footer"></i><br /> </a></li> <li><a href="https://www.youtube.com/channel/UCv60EXP08A3bJ6RTmt_ObYQ" target="_blank" rel="noopener noreferrer nofollow"><br /> <i class="fa fa-youtube-play icon-footer"></i><br /> </a></li> <li style="padding: 0px 0px 0px 3px !important;"><a href="https://bsky.app/profile/wikimedianederland.bsky.social" target="_blank" rel="noopener noreferrer nofollow"><svg width="15" height="15" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="#ffffff" d="M407.8 294.7c-3.3-.4-6.7-.8-10-1.3c3.4 .4 6.7 .9 10 1.3zM288 227.1C261.9 176.4 190.9 81.9 124.9 35.3C61.6-9.4 37.5-1.7 21.6 5.5C3.3 13.8 0 41.9 0 58.4S9.1 194 15 213.9c19.5 65.7 89.1 87.9 153.2 80.7c3.3-.5 6.6-.9 10-1.4c-3.3 .5-6.6 1-10 1.4C74.3 308.6-9.1 342.8 100.3 464.5C220.6 589.1 265.1 437.8 288 361.1c22.9 76.7 49.2 222.5 185.6 103.4c102.4-103.4 28.1-156-65.8-169.9c-3.3-.4-6.7-.8-10-1.3c3.4 .4 6.7 .9 10 1.3c64.1 7.1 133.6-15.1 153.2-80.7C566.9 194 576 75 576 58.4s-3.3-44.7-21.6-52.9c-15.8-7.1-40-14.9-103.2 29.8C385.1 81.9 314.1 176.4 288 227.1z"></path></svg><br /> </a></li> <li><a href="/feed/" target="_blank" rel="noopener noreferrer nofollow"><br /> <i class="fa fa-rss icon-footer"></i><br /> </a></li> <li><a href="https://mastodon.nl/@Wikimedia_Nederland" target="_blank" rel="me noopener"><br /> <i class="fa-brands fa-mastodon icon-footer"></i><br /> </a></li> </ul> <p style="font-size: 14px; font-style: italic; padding-top: 28px;">De teksten op deze website zijn beschikbaar onder de licentie <a href="https://creativecommons.org/licenses/by/4.0/deed.nl" target="_blank" rel="noopener">Creative Commons Naamsvermelding-Gelijk delen 4.0</a>.</p> </div> </div> </div> </div> <div class="col span_3"> <div id="nav_menu-3" class="widget widget_nav_menu"><div class="menu-footer-extra-menu-container"><ul id="menu-footer-extra-menu" class="menu"><li id="menu-item-9638" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-9638"><a rel="privacy-policy" href="https://www.wikimedia.nl/privacyverklaring/">Privacyverklaring</a></li> <li id="menu-item-6304" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6304"><a href="https://www.wikimedia.nl/brochures/">Brochures</a></li> <li id="menu-item-6303" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6303"><a href="https://www.wikimedia.nl/pers/">Pers</a></li> </ul></div></div><div id="text-9" class="widget widget_text"> <div class="textwidget"><p><strong><a href="/anbi/"><span style="color: #29aa6a;">ANBI</span></a></strong><br /> <strong><a href="https://kennisplatform.wikimedia.nl/" target="_blank" rel="noopener"><span style="color: #0071aa;">Wikimedia Kennisplatform</span></a><strong><br /> <a href="https://nl.wikimedia.org/wiki/BVR_-_startpagina" target="_blank" rel="noopener"><strong><strong><span style="color: #29aa6a;">Beleid Vriendelijke Ruimtes</span></strong></strong></a></strong></strong></p> </div> </div> </div> <div class="col span_3"> <div id="text-6" class="widget widget_text"> <div class="textwidget"><div id="nav_menu-2" class="widget widget_nav_menu"> <div class="menu-footer-main-menu-container"> <p><a style="color: #29aa6a!important;" href="/wikiplatforms/">Wikipedia &amp; meer</a></p> <p><a style="color: #29aa6a!important;" href="/samenwerken/">Met ons samenwerken?</a></p> <p><a style="color: #29aa6a!important;" href="/wat-wij-doen/">Wat wij doen</a></p> <p><a style="color: #29aa6a!important;" href="/steun-wikimedia-nederland/">Steun Wikimedia Nederland</a></p> <p><a style="color: #29aa6a!important;" href="/wie-wij-zijn/">Wie wij zijn</a></p> <p><a style="color: #29aa6a!important;" href="/actueel/" aria-current="page">Actueel</a></p> <p><a style="color: #29aa6a!important;" href="/contact/">Contact</a></p> </div> </div> </div> </div> </div> <div class="col span_3"> <script type="text/javascript"></script> <div class='gf_browser_ie gf_browser_ie7 gform_wrapper gravity-theme' id='gform_wrapper_34' > <div class='gform_heading'> <span class='gform_description'></span> </div><form method='post' enctype='multipart/form-data' id='gform_34' action='/samenwerken/hoger-onderwijs/' > <div class='gform_body gform-body'><div id='gform_fields_34' class='gform_fields top_label form_sublabel_below description_below'><div id="field_34_3" class="gfield gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below field_description_below gfield_visibility_visible" data-js-reload="field_34_3"><p class="form-title"> Aanmelden nieuwsbrief </p></div><div id="field_34_1" class="gfield gfield_contains_required field_sublabel_below field_description_below gfield_visibility_visible" data-js-reload="field_34_1"><label class='gfield_label' for='input_34_1' >Emailadres*<span class="gfield_required"><span class="gfield_required gfield_required_text">(Vereist)</span></span></label><div class='ginput_container ginput_container_email'> <input name='input_1' id='input_34_1' type='text' value='' class='large' placeholder='mail@voorbeeld.nl' aria-required="true" aria-invalid="false" /> </div></div></div></div> <div class='gform_footer top_label'> <input type='submit' id='gform_submit_button_34' class='gform_button button' value='Versturen &gt;' onclick='if(window["gf_submitting_34"]){return false;} window["gf_submitting_34"]=true; ' onkeypress='if( event.keyCode == 13 ){ if(window["gf_submitting_34"]){return false;} window["gf_submitting_34"]=true; jQuery("#gform_34").trigger("submit",[true]); }' /> <input type='hidden' class='gform_hidden' name='is_submit_34' value='1' /> <input type='hidden' class='gform_hidden' name='gform_submit' value='34' /> <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' /> <input type='hidden' class='gform_hidden' name='state_34' value='WyJbXSIsIjliNjFhMWE4MTE1ZDhjZWQ4ZTZiZDQxMGEwODVhYTM4Il0=' /> <input type='hidden' class='gform_hidden' name='gform_target_page_number_34' id='gform_target_page_number_34' value='0' /> <input type='hidden' class='gform_hidden' name='gform_source_page_number_34' id='gform_source_page_number_34' value='1' /> <input type='hidden' name='gform_field_values' value='' /> </div> </form> </div> <div id="text-10" class="widget widget_text"> <div class="textwidget"> </div> </div> </div> </div> </div><!--/container--> </div><!--/footer-widgets--> <div class="row" id="copyright" data-layout="centered"> <div class="container"> <div class="col span_5"> <div class="widget"> </div> <p>Ontwerp en bouw website: <a target="_blank" rel="noopener noreferrer nofollow" href="https://www.panart.nl/">PanArt</a> | Powered by <a target="_blank" rel="noopener noreferrer nofollow" href="https://wordpress.com/">WordPress</a></p> </div><!--/span_5--> <div class="col span_7 col_last"> <ul class="social"> </ul> </div><!--/span_7--> </div><!--/container--> </div><!--/row--> </div><!--/footer-outer--> </div> <!--/ajax-content-wrap--> <!-- script voor external links --> <!-- <script type="text/javascript"> //<![CDATA[ jQuery(document).ready(function($) { $('a').each(function() { var a = new RegExp('/' + window.location.host + '/'); if(!a.test(this.href)) { $(this).click(function(event) { event.preventDefault(); event.stopPropagation(); window.open(this.href, '_blank'); }); } }); }); //]]> </script> --> <a id="to-top" class=" mobile-enabled "><i class="fa fa-angle-up"></i></a> <script type="text/html" id="wpb-modifications"></script><link rel='stylesheet' id='gform_basic-css' href='https://www.wikimedia.nl/wp-content/plugins/gravityforms/assets/css/dist/basic.css?ver=2.6.9' type='text/css' media='all' /> <link rel='stylesheet' id='gform_theme_components-css' href='https://www.wikimedia.nl/wp-content/plugins/gravityforms/assets/css/dist/theme-components.css?ver=2.6.9' type='text/css' media='all' /> <link rel='stylesheet' id='gform_theme_ie11-css' href='https://www.wikimedia.nl/wp-content/plugins/gravityforms/assets/css/dist/theme-ie11.css?ver=2.6.9' type='text/css' media='all' /> <link rel='stylesheet' id='gform_theme-css' href='https://www.wikimedia.nl/wp-content/plugins/gravityforms/assets/css/dist/theme.css?ver=2.6.9' type='text/css' media='all' /> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='magnific-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/plugins/magnific.css?ver=8.6.0' type='text/css' media='all' /> <link rel='stylesheet' id='nectar-ocm-core-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/off-canvas/core.css?ver=13.0.5' type='text/css' media='all' /> <link rel='stylesheet' id='nectar-ocm-simple-css' href='https://www.wikimedia.nl/wp-content/themes/salient/css/off-canvas/simple-dropdown.css?ver=13.0.5' type='text/css' media='all' /> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/db_samenwerking/js/samenwerking.js?ver=1.0.0" id="db_samenwerking_js-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/gravitycharts/build/lib/chart.js/chart.min.js?ver=1.0.3" id="gravitycharts-chart-js-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/db_extended_blog/js/blog.js?ver=1.0.0" id="db_ext_blog_js-js"></script> <script type="text/javascript" id="salient-social-js-extra"> /* <![CDATA[ */ var nectarLove = {"ajaxurl":"https:\/\/www.wikimedia.nl\/wp-admin\/admin-ajax.php","postID":"6272","rooturl":"https:\/\/www.wikimedia.nl","loveNonce":"85c01395b3"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/salient-social/js/salient-social.js?ver=1.2" id="salient-social-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/widget-options/assets/js/widgetopts.resize.js?ver=4.0.8" id="widgetopts-resize-script-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/image-source-control-pro/public/assets/js/front-js.js?ver=2.1.1" id="isc_front_js-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/jquery.easing.js?ver=1.3" id="jquery-easing-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/jquery.mousewheel.js?ver=3.1.13" id="jquery-mousewheel-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/priority.js?ver=13.0.5" id="nectar_priority-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/transit.js?ver=0.9.9" id="nectar-transit-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/waypoints.js?ver=4.0.2" id="nectar-waypoints-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/imagesLoaded.min.js?ver=4.1.4" id="imagesLoaded-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/hoverintent.js?ver=1.9" id="hoverintent-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/magnific.js?ver=7.0.1" id="magnific-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/third-party/superfish.js?ver=1.5.8" id="superfish-js"></script> <script type="text/javascript" id="nectar-frontend-js-extra"> /* <![CDATA[ */ var nectarLove = {"ajaxurl":"https:\/\/www.wikimedia.nl\/wp-admin\/admin-ajax.php","postID":"6272","rooturl":"https:\/\/www.wikimedia.nl","disqusComments":"false","loveNonce":"85c01395b3","mapApiKey":""}; var nectarOptions = {"quick_search":"false","mobile_header_format":"default","left_header_dropdown_func":"default","ajax_add_to_cart":"0","ocm_remove_ext_menu_items":"remove_images","woo_product_filter_toggle":"0","woo_sidebar_toggles":"true","woo_sticky_sidebar":"0","woo_minimal_product_hover":"default","woo_minimal_product_effect":"default","woo_related_upsell_carousel":"false","woo_product_variable_select":"default"}; var nectar_front_i18n = {"next":"Next","previous":"Previous"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/themes/salient/js/init.js?ver=13.0.5" id="nectar-frontend-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/salient-core/js/third-party/touchswipe.min.js?ver=1.0" id="touchswipe-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-content/plugins/js_composer_salient/assets/js/dist/js_composer_front.min.js?ver=6.6.0" id="wpb_composer_front_js-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-includes/js/dist/dom-ready.js?ver=5b9fa8df0892dc9a7c41" id="wp-dom-ready-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-includes/js/dist/hooks.js?ver=5b4ec27a7b82f601224a" id="wp-hooks-js"></script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" id="wp-a11y-js-translations"> /* <![CDATA[ */ ( function( domain, translations ) { var localeData = translations.locale_data[ domain ] || translations.locale_data.messages; localeData[""].domain = domain; wp.i18n.setLocaleData( localeData, domain ); } )( "default", {"translation-revision-date":"2025-02-17 18:19:05+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"nl"},"Notifications":["Meldingen"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} ); /* ]]> */ </script> <script type="text/javascript" src="https://www.wikimedia.nl/wp-includes/js/dist/a11y.js?ver=55ca8e5ef2be0319312c" id="wp-a11y-js"></script> <script type="text/javascript" defer='defer' src="https://www.wikimedia.nl/wp-content/plugins/gravityforms/js/jquery.json.js?ver=2.6.9" id="gform_json-js"></script> <script type="text/javascript" id="gform_gravityforms-js-extra"> /* <![CDATA[ */ var gform_i18n = {"datepicker":{"days":{"monday":"Mon","tuesday":"Tue","wednesday":"Wed","thursday":"Thu","friday":"Fri","saturday":"Sat","sunday":"Sun"},"months":{"january":"Januari","february":"Februari","march":"Maart","april":"April","may":"Mei","june":"Juni","july":"Juli","august":"Augustus","september":"September","october":"Oktober","november":"November","december":"December"},"firstDay":1,"iconText":"Selecteer een datum"}}; var gf_legacy_multi = []; var gform_gravityforms = {"strings":{"invalid_file_extension":"Dit bestandstype is niet toegestaan. Moet \u00e9\u00e9n van de volgende zijn:","delete_file":"Dit bestand verwijderen","in_progress":"in behandeling","file_exceeds_limit":"Bestand overschrijdt limiet bestandsgrootte","illegal_extension":"Dit type bestand is niet toegestaan.","max_reached":"Maximale aantal bestanden bereikt","unknown_error":"Er was een probleem bij het opslaan van het bestand op de server","currently_uploading":"Wacht tot het uploaden is voltooid","cancel":"Annuleren","cancel_upload":"Deze upload annuleren","cancelled":"Geannuleerd"},"vars":{"images_url":"https:\/\/www.wikimedia.nl\/wp-content\/plugins\/gravityforms\/images"}}; var gf_global = {"gf_currency_config":{"name":"Euro","symbol_left":"\u20ac","symbol_right":"","symbol_padding":" ","thousand_separator":".","decimal_separator":",","decimals":2,"code":"EUR"},"base_url":"https:\/\/www.wikimedia.nl\/wp-content\/plugins\/gravityforms","number_formats":[],"spinnerUrl":"https:\/\/www.wikimedia.nl\/wp-content\/plugins\/gravityforms\/images\/spinner.svg","strings":{"newRowAdded":"Nieuwe rij toegevoegd.","rowRemoved":"Rij verwijderd","formSaved":"Het formulier is opgeslagen. De inhoud bevat de link om terug te keren en het formulier in te vullen."}}; /* ]]> */ </script> <script type="text/javascript" defer='defer' src="https://www.wikimedia.nl/wp-content/plugins/gravityforms/js/gravityforms.js?ver=2.6.9" id="gform_gravityforms-js"></script> <script type="text/javascript" defer='defer' src="https://www.wikimedia.nl/wp-content/plugins/gravityforms/js/placeholders.jquery.min.js?ver=2.6.9" id="gform_placeholder-js"></script> <script type="text/javascript"> ( function( $ ) { $("a[href^=http]").click(function(){ if(this.href.indexOf(location.hostname) == -1) { $(this).attr({ target: "_blank" }); } }) //Add Nofollow $("a").each(function(){ if(this.href.indexOf(location.hostname) == -1 ){ $(this).attr({ rel: "noopener noreferer nofollow" }); } }); } )( jQuery ); </script> <script type="text/javascript"> /* <![CDATA[ */ gform.initializeOnLoaded( function() { jQuery(document).on('gform_post_render', function(event, formId, currentPage){if(formId == 34) {if(typeof Placeholders != 'undefined'){ Placeholders.enable(); }} } );jQuery(document).bind('gform_post_conditional_logic', function(event, formId, fields, isInit){} ) } ); /* ]]> */ </script> <script type="text/javascript"> /* <![CDATA[ */ gform.initializeOnLoaded( function() { jQuery(document).trigger('gform_post_render', [34, 1]) } ); /* ]]> */ </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10