CINXE.COM
Sijoul Website Blog -
<!doctype html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="google-site-verification" content="5FEWxHuxzpUZ5w0O-Apu0BRkvAwx9X6_kwSbtGloT9s" /> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="stylesheet" href="https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/customstyle.css" type="text/css" media="screen" /> <link rel="stylesheet" href="https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/animate.css" type="text/css" media="screen" /> <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' /> <noscript><style>#preloader{display:none;}</style></noscript> <!-- This site is optimized with the Yoast SEO plugin v23.6 - https://yoast.com/wordpress/plugins/seo/ --> <title>Sijoul Website Blog -</title> <link rel="canonical" href="https://sijoul.sandipuniversity.edu.in/blog/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Sijoul Website Blog" /> <meta property="og:url" content="https://sijoul.sandipuniversity.edu.in/blog/" /> <meta property="og:site_name" content="Sijoul Website Blog" /> <meta name="twitter:card" content="summary_large_image" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"CollectionPage","@id":"https://sijoul.sandipuniversity.edu.in/blog/","url":"https://sijoul.sandipuniversity.edu.in/blog/","name":"Sijoul Website Blog -","isPartOf":{"@id":"https://sijoul.sandipuniversity.edu.in/blog/#website"},"breadcrumb":{"@id":"https://sijoul.sandipuniversity.edu.in/blog/#breadcrumb"},"inLanguage":"en-US"},{"@type":"BreadcrumbList","@id":"https://sijoul.sandipuniversity.edu.in/blog/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"WebSite","@id":"https://sijoul.sandipuniversity.edu.in/blog/#website","url":"https://sijoul.sandipuniversity.edu.in/blog/","name":"Sijoul Website Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://sijoul.sandipuniversity.edu.in/blog/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}</script> <!-- / Yoast SEO plugin. --> <link rel='dns-prefetch' href='//fonts.googleapis.com' /> <link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /> <link rel="alternate" type="application/rss+xml" title="Sijoul Website Blog » Feed" href="https://sijoul.sandipuniversity.edu.in/blog/feed" /> <link rel="alternate" type="application/rss+xml" title="Sijoul Website Blog » Comments Feed" href="https://sijoul.sandipuniversity.edu.in/blog/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:\/\/sijoul.sandipuniversity.edu.in\/blog\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"https:\/\/sijoul.sandipuniversity.edu.in\/blog\/wp-includes\/js\/twemoji.js?ver=6.6.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> <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://sijoul.sandipuniversity.edu.in/blog/wp-includes/css/dist/block-library/style.css?ver=6.6.2' type='text/css' media='all' /> <style id='wp-block-library-theme-inline-css' type='text/css'> .wp-block-audio :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-audio :where(figcaption){ color:#ffffffa6; } .wp-block-audio{ margin:0 0 1em; } .wp-block-code{ border:1px solid #ccc; border-radius:4px; font-family:Menlo,Consolas,monaco,monospace; padding:.8em 1em; } .wp-block-embed :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-embed :where(figcaption){ color:#ffffffa6; } .wp-block-embed{ margin:0 0 1em; } .blocks-gallery-caption{ color:#555; font-size:13px; text-align:center; } .is-dark-theme .blocks-gallery-caption{ color:#ffffffa6; } :root :where(.wp-block-image figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme :root :where(.wp-block-image figcaption){ color:#ffffffa6; } .wp-block-image{ margin:0 0 1em; } .wp-block-pullquote{ border-bottom:4px solid; border-top:4px solid; color:currentColor; margin-bottom:1.75em; } .wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{ color:currentColor; font-size:.8125em; font-style:normal; text-transform:uppercase; } .wp-block-quote{ border-left:.25em solid; margin:0 0 1.75em; padding-left:1em; } .wp-block-quote cite,.wp-block-quote footer{ color:currentColor; font-size:.8125em; font-style:normal; position:relative; } .wp-block-quote.has-text-align-right{ border-left:none; border-right:.25em solid; padding-left:0; padding-right:1em; } .wp-block-quote.has-text-align-center{ border:none; padding-left:0; } .wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{ border:none; } .wp-block-search .wp-block-search__label{ font-weight:700; } .wp-block-search__button{ border:1px solid #ccc; padding:.375em .625em; } :where(.wp-block-group.has-background){ padding:1.25em 2.375em; } .wp-block-separator.has-css-opacity{ opacity:.4; } .wp-block-separator{ border:none; border-bottom:2px solid; margin-left:auto; margin-right:auto; } .wp-block-separator.has-alpha-channel-opacity{ opacity:1; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots){ width:100px; } .wp-block-separator.has-background:not(.is-style-dots){ border-bottom:none; height:1px; } .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){ height:2px; } .wp-block-table{ margin:0 0 1em; } .wp-block-table td,.wp-block-table th{ word-break:normal; } .wp-block-table :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-table :where(figcaption){ color:#ffffffa6; } .wp-block-video :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-video :where(figcaption){ color:#ffffffa6; } .wp-block-video{ margin:0 0 1em; } :root :where(.wp-block-template-part.has-background){ margin-bottom:0; margin-top:0; padding:1.25em 2.375em; } </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> <style id='extendify-gutenberg-patterns-and-templates-utilities-inline-css' type='text/css'> .ext-absolute { position: absolute !important; } .ext-relative { position: relative !important; } .ext-top-base { top: var(--wp--style--block-gap, 1.75rem) !important; } .ext-top-lg { top: var(--extendify--spacing--large, 3rem) !important; } .ext--top-base { top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--top-lg { top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-right-base { right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-right-lg { right: var(--extendify--spacing--large, 3rem) !important; } .ext--right-base { right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--right-lg { right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-bottom-base { bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-bottom-lg { bottom: var(--extendify--spacing--large, 3rem) !important; } .ext--bottom-base { bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--bottom-lg { bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-left-base { left: var(--wp--style--block-gap, 1.75rem) !important; } .ext-left-lg { left: var(--extendify--spacing--large, 3rem) !important; } .ext--left-base { left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--left-lg { left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-order-1 { order: 1 !important; } .ext-order-2 { order: 2 !important; } .ext-col-auto { grid-column: auto !important; } .ext-col-span-1 { grid-column: span 1 / span 1 !important; } .ext-col-span-2 { grid-column: span 2 / span 2 !important; } .ext-col-span-3 { grid-column: span 3 / span 3 !important; } .ext-col-span-4 { grid-column: span 4 / span 4 !important; } .ext-col-span-5 { grid-column: span 5 / span 5 !important; } .ext-col-span-6 { grid-column: span 6 / span 6 !important; } .ext-col-span-7 { grid-column: span 7 / span 7 !important; } .ext-col-span-8 { grid-column: span 8 / span 8 !important; } .ext-col-span-9 { grid-column: span 9 / span 9 !important; } .ext-col-span-10 { grid-column: span 10 / span 10 !important; } .ext-col-span-11 { grid-column: span 11 / span 11 !important; } .ext-col-span-12 { grid-column: span 12 / span 12 !important; } .ext-col-span-full { grid-column: 1 / -1 !important; } .ext-col-start-1 { grid-column-start: 1 !important; } .ext-col-start-2 { grid-column-start: 2 !important; } .ext-col-start-3 { grid-column-start: 3 !important; } .ext-col-start-4 { grid-column-start: 4 !important; } .ext-col-start-5 { grid-column-start: 5 !important; } .ext-col-start-6 { grid-column-start: 6 !important; } .ext-col-start-7 { grid-column-start: 7 !important; } .ext-col-start-8 { grid-column-start: 8 !important; } .ext-col-start-9 { grid-column-start: 9 !important; } .ext-col-start-10 { grid-column-start: 10 !important; } .ext-col-start-11 { grid-column-start: 11 !important; } .ext-col-start-12 { grid-column-start: 12 !important; } .ext-col-start-13 { grid-column-start: 13 !important; } .ext-col-start-auto { grid-column-start: auto !important; } .ext-col-end-1 { grid-column-end: 1 !important; } .ext-col-end-2 { grid-column-end: 2 !important; } .ext-col-end-3 { grid-column-end: 3 !important; } .ext-col-end-4 { grid-column-end: 4 !important; } .ext-col-end-5 { grid-column-end: 5 !important; } .ext-col-end-6 { grid-column-end: 6 !important; } .ext-col-end-7 { grid-column-end: 7 !important; } .ext-col-end-8 { grid-column-end: 8 !important; } .ext-col-end-9 { grid-column-end: 9 !important; } .ext-col-end-10 { grid-column-end: 10 !important; } .ext-col-end-11 { grid-column-end: 11 !important; } .ext-col-end-12 { grid-column-end: 12 !important; } .ext-col-end-13 { grid-column-end: 13 !important; } .ext-col-end-auto { grid-column-end: auto !important; } .ext-row-auto { grid-row: auto !important; } .ext-row-span-1 { grid-row: span 1 / span 1 !important; } .ext-row-span-2 { grid-row: span 2 / span 2 !important; } .ext-row-span-3 { grid-row: span 3 / span 3 !important; } .ext-row-span-4 { grid-row: span 4 / span 4 !important; } .ext-row-span-5 { grid-row: span 5 / span 5 !important; } .ext-row-span-6 { grid-row: span 6 / span 6 !important; } .ext-row-span-full { grid-row: 1 / -1 !important; } .ext-row-start-1 { grid-row-start: 1 !important; } .ext-row-start-2 { grid-row-start: 2 !important; } .ext-row-start-3 { grid-row-start: 3 !important; } .ext-row-start-4 { grid-row-start: 4 !important; } .ext-row-start-5 { grid-row-start: 5 !important; } .ext-row-start-6 { grid-row-start: 6 !important; } .ext-row-start-7 { grid-row-start: 7 !important; } .ext-row-start-auto { grid-row-start: auto !important; } .ext-row-end-1 { grid-row-end: 1 !important; } .ext-row-end-2 { grid-row-end: 2 !important; } .ext-row-end-3 { grid-row-end: 3 !important; } .ext-row-end-4 { grid-row-end: 4 !important; } .ext-row-end-5 { grid-row-end: 5 !important; } .ext-row-end-6 { grid-row-end: 6 !important; } .ext-row-end-7 { grid-row-end: 7 !important; } .ext-row-end-auto { grid-row-end: auto !important; } .ext-m-0:not([style*="margin"]) { margin: 0 !important; } .ext-m-auto:not([style*="margin"]) { margin: auto !important; } .ext-m-base:not([style*="margin"]) { margin: var(--wp--style--block-gap, 1.75rem) !important; } .ext-m-lg:not([style*="margin"]) { margin: var(--extendify--spacing--large, 3rem) !important; } .ext--m-base:not([style*="margin"]) { margin: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--m-lg:not([style*="margin"]) { margin: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mx-0:not([style*="margin"]) { margin-left: 0 !important; margin-right: 0 !important; } .ext-mx-auto:not([style*="margin"]) { margin-left: auto !important; margin-right: auto !important; } .ext-mx-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mx-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; margin-right: var(--extendify--spacing--large, 3rem) !important; } .ext--mx-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mx-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-my-0:not([style*="margin"]) { margin-top: 0 !important; margin-bottom: 0 !important; } .ext-my-auto:not([style*="margin"]) { margin-top: auto !important; margin-bottom: auto !important; } .ext-my-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-my-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext--my-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--my-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mt-0:not([style*="margin"]) { margin-top: 0 !important; } .ext-mt-auto:not([style*="margin"]) { margin-top: auto !important; } .ext-mt-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mt-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; } .ext--mt-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mt-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mr-0:not([style*="margin"]) { margin-right: 0 !important; } .ext-mr-auto:not([style*="margin"]) { margin-right: auto !important; } .ext-mr-base:not([style*="margin"]) { margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mr-lg:not([style*="margin"]) { margin-right: var(--extendify--spacing--large, 3rem) !important; } .ext--mr-base:not([style*="margin"]) { margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mr-lg:not([style*="margin"]) { margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-mb-0:not([style*="margin"]) { margin-bottom: 0 !important; } .ext-mb-auto:not([style*="margin"]) { margin-bottom: auto !important; } .ext-mb-base:not([style*="margin"]) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-mb-lg:not([style*="margin"]) { margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext--mb-base:not([style*="margin"]) { margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--mb-lg:not([style*="margin"]) { margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-ml-0:not([style*="margin"]) { margin-left: 0 !important; } .ext-ml-auto:not([style*="margin"]) { margin-left: auto !important; } .ext-ml-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; } .ext-ml-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; } .ext--ml-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .ext--ml-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .ext-block { display: block !important; } .ext-inline-block { display: inline-block !important; } .ext-inline { display: inline !important; } .ext-flex { display: flex !important; } .ext-inline-flex { display: inline-flex !important; } .ext-grid { display: grid !important; } .ext-inline-grid { display: inline-grid !important; } .ext-hidden { display: none !important; } .ext-w-auto { width: auto !important; } .ext-w-full { width: 100% !important; } .ext-max-w-full { max-width: 100% !important; } .ext-flex-1 { flex: 1 1 0% !important; } .ext-flex-auto { flex: 1 1 auto !important; } .ext-flex-initial { flex: 0 1 auto !important; } .ext-flex-none { flex: none !important; } .ext-flex-shrink-0 { flex-shrink: 0 !important; } .ext-flex-shrink { flex-shrink: 1 !important; } .ext-flex-grow-0 { flex-grow: 0 !important; } .ext-flex-grow { flex-grow: 1 !important; } .ext-list-none { list-style-type: none !important; } .ext-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .ext-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .ext-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .ext-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .ext-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .ext-grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .ext-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .ext-grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .ext-grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .ext-grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .ext-grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .ext-grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .ext-grid-cols-none { grid-template-columns: none !important; } .ext-grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } .ext-grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } .ext-grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } .ext-grid-rows-4 { grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } .ext-grid-rows-5 { grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } .ext-grid-rows-6 { grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } .ext-grid-rows-none { grid-template-rows: none !important; } .ext-flex-row { flex-direction: row !important; } .ext-flex-row-reverse { flex-direction: row-reverse !important; } .ext-flex-col { flex-direction: column !important; } .ext-flex-col-reverse { flex-direction: column-reverse !important; } .ext-flex-wrap { flex-wrap: wrap !important; } .ext-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } .ext-flex-nowrap { flex-wrap: nowrap !important; } .ext-items-start { align-items: flex-start !important; } .ext-items-end { align-items: flex-end !important; } .ext-items-center { align-items: center !important; } .ext-items-baseline { align-items: baseline !important; } .ext-items-stretch { align-items: stretch !important; } .ext-justify-start { justify-content: flex-start !important; } .ext-justify-end { justify-content: flex-end !important; } .ext-justify-center { justify-content: center !important; } .ext-justify-between { justify-content: space-between !important; } .ext-justify-around { justify-content: space-around !important; } .ext-justify-evenly { justify-content: space-evenly !important; } .ext-justify-items-start { justify-items: start !important; } .ext-justify-items-end { justify-items: end !important; } .ext-justify-items-center { justify-items: center !important; } .ext-justify-items-stretch { justify-items: stretch !important; } .ext-gap-0 { gap: 0 !important; } .ext-gap-base { gap: var(--wp--style--block-gap, 1.75rem) !important; } .ext-gap-lg { gap: var(--extendify--spacing--large, 3rem) !important; } .ext-gap-x-0 { -moz-column-gap: 0 !important; column-gap: 0 !important; } .ext-gap-x-base { -moz-column-gap: var(--wp--style--block-gap, 1.75rem) !important; column-gap: var(--wp--style--block-gap, 1.75rem) !important; } .ext-gap-x-lg { -moz-column-gap: var(--extendify--spacing--large, 3rem) !important; column-gap: var(--extendify--spacing--large, 3rem) !important; } .ext-gap-y-0 { row-gap: 0 !important; } .ext-gap-y-base { row-gap: var(--wp--style--block-gap, 1.75rem) !important; } .ext-gap-y-lg { row-gap: var(--extendify--spacing--large, 3rem) !important; } .ext-justify-self-auto { justify-self: auto !important; } .ext-justify-self-start { justify-self: start !important; } .ext-justify-self-end { justify-self: end !important; } .ext-justify-self-center { justify-self: center !important; } .ext-justify-self-stretch { justify-self: stretch !important; } .ext-rounded-none { border-radius: 0px !important; } .ext-rounded-full { border-radius: 9999px !important; } .ext-rounded-t-none { border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; } .ext-rounded-t-full { border-top-left-radius: 9999px !important; border-top-right-radius: 9999px !important; } .ext-rounded-r-none { border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; } .ext-rounded-r-full { border-top-right-radius: 9999px !important; border-bottom-right-radius: 9999px !important; } .ext-rounded-b-none { border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; } .ext-rounded-b-full { border-bottom-right-radius: 9999px !important; border-bottom-left-radius: 9999px !important; } .ext-rounded-l-none { border-top-left-radius: 0px !important; border-bottom-left-radius: 0px !important; } .ext-rounded-l-full { border-top-left-radius: 9999px !important; border-bottom-left-radius: 9999px !important; } .ext-rounded-tl-none { border-top-left-radius: 0px !important; } .ext-rounded-tl-full { border-top-left-radius: 9999px !important; } .ext-rounded-tr-none { border-top-right-radius: 0px !important; } .ext-rounded-tr-full { border-top-right-radius: 9999px !important; } .ext-rounded-br-none { border-bottom-right-radius: 0px !important; } .ext-rounded-br-full { border-bottom-right-radius: 9999px !important; } .ext-rounded-bl-none { border-bottom-left-radius: 0px !important; } .ext-rounded-bl-full { border-bottom-left-radius: 9999px !important; } .ext-border-0 { border-width: 0px !important; } .ext-border-t-0 { border-top-width: 0px !important; } .ext-border-r-0 { border-right-width: 0px !important; } .ext-border-b-0 { border-bottom-width: 0px !important; } .ext-border-l-0 { border-left-width: 0px !important; } .ext-p-0:not([style*="padding"]) { padding: 0 !important; } .ext-p-base:not([style*="padding"]) { padding: var(--wp--style--block-gap, 1.75rem) !important; } .ext-p-lg:not([style*="padding"]) { padding: var(--extendify--spacing--large, 3rem) !important; } .ext-px-0:not([style*="padding"]) { padding-left: 0 !important; padding-right: 0 !important; } .ext-px-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-px-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; padding-right: var(--extendify--spacing--large, 3rem) !important; } .ext-py-0:not([style*="padding"]) { padding-top: 0 !important; padding-bottom: 0 !important; } .ext-py-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-py-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext-pt-0:not([style*="padding"]) { padding-top: 0 !important; } .ext-pt-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pt-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; } .ext-pr-0:not([style*="padding"]) { padding-right: 0 !important; } .ext-pr-base:not([style*="padding"]) { padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pr-lg:not([style*="padding"]) { padding-right: var(--extendify--spacing--large, 3rem) !important; } .ext-pb-0:not([style*="padding"]) { padding-bottom: 0 !important; } .ext-pb-base:not([style*="padding"]) { padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pb-lg:not([style*="padding"]) { padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .ext-pl-0:not([style*="padding"]) { padding-left: 0 !important; } .ext-pl-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; } .ext-pl-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; } .ext-text-left { text-align: left !important; } .ext-text-center { text-align: center !important; } .ext-text-right { text-align: right !important; } .ext-leading-none { line-height: 1 !important; } .ext-leading-tight { line-height: 1.25 !important; } .ext-leading-snug { line-height: 1.375 !important; } .ext-leading-normal { line-height: 1.5 !important; } .ext-leading-relaxed { line-height: 1.625 !important; } .ext-leading-loose { line-height: 2 !important; } .ext-aspect-square img { aspect-ratio: 1 / 1 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-landscape img { aspect-ratio: 4 / 3 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-landscape-wide img { aspect-ratio: 16 / 9 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-portrait img { aspect-ratio: 3 / 4 !important; -o-object-fit: cover !important; object-fit: cover !important; } .ext-aspect-square .components-resizable-box__container, .ext-aspect-landscape .components-resizable-box__container, .ext-aspect-landscape-wide .components-resizable-box__container, .ext-aspect-portrait .components-resizable-box__container { height: auto !important; } .clip-path--rhombus img { -webkit-clip-path: polygon(15% 6%, 80% 29%, 84% 93%, 23% 69%) !important; clip-path: polygon(15% 6%, 80% 29%, 84% 93%, 23% 69%) !important; } .clip-path--diamond img { -webkit-clip-path: polygon(5% 29%, 60% 2%, 91% 64%, 36% 89%) !important; clip-path: polygon(5% 29%, 60% 2%, 91% 64%, 36% 89%) !important; } .clip-path--rhombus-alt img { -webkit-clip-path: polygon(14% 9%, 85% 24%, 91% 89%, 19% 76%) !important; clip-path: polygon(14% 9%, 85% 24%, 91% 89%, 19% 76%) !important; } /* The .ext utility is a top-level class that we use to target contents within our patterns. We use it here to ensure columns blocks display well across themes. */ .wp-block-columns[class*="fullwidth-cols"] { /* no suggestion */ margin-bottom: unset !important; } .wp-block-column.editor\:pointer-events-none { /* no suggestion */ margin-top: 0 !important; margin-bottom: 0 !important; } .is-root-container.block-editor-block-list__layout > [data-align="full"]:not(:first-of-type) > .wp-block-column.editor\:pointer-events-none, .is-root-container.block-editor-block-list__layout > [data-align="wide"] > .wp-block-column.editor\:pointer-events-none { /* no suggestion */ margin-top: calc(-1 * var(--wp--style--block-gap, 28px)) !important; } .is-root-container.block-editor-block-list__layout > [data-align="full"]:not(:first-of-type) > .ext-my-0, .is-root-container.block-editor-block-list__layout > [data-align="wide"] > .ext-my-0:not([style*="margin"]) { /* no suggestion */ margin-top: calc(-1 * var(--wp--style--block-gap, 28px)) !important; } /* Some popular themes use padding instead of core margin for columns; remove it */ .ext .wp-block-columns .wp-block-column[style*="padding"] { /* no suggestion */ padding-left: 0 !important; padding-right: 0 !important; } /* Some popular themes add double spacing between columns; remove it */ .ext .wp-block-columns + .wp-block-columns:not([class*="mt-"]):not([class*="my-"]):not([style*="margin"]) { /* no suggestion */ margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column:first-child, [class*="fullwidth-cols"] .wp-block-group:first-child { /* no suggestion */ } [class*="fullwidth-cols"] .wp-block-column:first-child, [class*="fullwidth-cols"] .wp-block-group:first-child { margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column:last-child, [class*="fullwidth-cols"] .wp-block-group:last-child { /* no suggestion */ } [class*="fullwidth-cols"] .wp-block-column:last-child, [class*="fullwidth-cols"] .wp-block-group:last-child { margin-bottom: 0 !important; } [class*="fullwidth-cols"] .wp-block-column:first-child > * { /* no suggestion */ margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column > *:first-child { /* no suggestion */ margin-top: 0 !important; } [class*="fullwidth-cols"] .wp-block-column > *:last-child { /* no suggestion */ margin-bottom: 0 !important; } .ext .is-not-stacked-on-mobile .wp-block-column { /* no suggestion */ margin-bottom: 0 !important; } /* Add base margin bottom to all columns */ .wp-block-columns[class*="fullwidth-cols"]:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:last-child) { /* no suggestion */ margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } @media (min-width: 782px) { .wp-block-columns[class*="fullwidth-cols"]:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:last-child) { /* no suggestion */ margin-bottom: 0 !important; } } /* Remove margin bottom from "not-stacked" columns */ .wp-block-columns[class*="fullwidth-cols"].is-not-stacked-on-mobile > .wp-block-column { /* no suggestion */ margin-bottom: 0 !important; } @media (min-width: 600px) and (max-width: 781px) { .wp-block-columns[class*="fullwidth-cols"]:not(.is-not-stacked-on-mobile) > .wp-block-column:nth-child(even) { /* no suggestion */ margin-left: var(--wp--style--block-gap, 2em) !important; } } /* The `tablet:fullwidth-cols` and `desktop:fullwidth-cols` utilities are used to counter the core/columns responsive for at our breakpoints. */ @media (max-width: 781px) { .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) { flex-wrap: wrap !important; } .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { margin-left: 0 !important; } .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not([style*="margin"]) { /* no suggestion */ margin-left: 0 !important; } .tablet\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { flex-basis: 100% !important; /* Required to negate core/columns flex-basis */ } } @media (max-width: 1079px) { .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) { flex-wrap: wrap !important; } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { margin-left: 0 !important; } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not([style*="margin"]) { /* no suggestion */ margin-left: 0 !important; } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column { flex-basis: 100% !important; /* Required to negate core/columns flex-basis */ } .desktop\:fullwidth-cols.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:last-child) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } } .direction-rtl { direction: rtl !important; } .direction-ltr { direction: ltr !important; } /* Use "is-style-" prefix to support adding this style to the core/list block */ .is-style-inline-list { padding-left: 0 !important; } .is-style-inline-list li { /* no suggestion */ list-style-type: none !important; } @media (min-width: 782px) { .is-style-inline-list li { margin-right: var(--wp--style--block-gap, 1.75rem) !important; display: inline !important; } } .is-style-inline-list li:first-child { /* no suggestion */ } @media (min-width: 782px) { .is-style-inline-list li:first-child { margin-left: 0 !important; } } .is-style-inline-list li:last-child { /* no suggestion */ } @media (min-width: 782px) { .is-style-inline-list li:last-child { margin-right: 0 !important; } } .bring-to-front { position: relative !important; z-index: 10 !important; } .text-stroke { -webkit-text-stroke-width: var( --wp--custom--typography--text-stroke-width, 2px ) !important; -webkit-text-stroke-color: var(--wp--preset--color--background) !important; } .text-stroke--primary { -webkit-text-stroke-width: var( --wp--custom--typography--text-stroke-width, 2px ) !important; -webkit-text-stroke-color: var(--wp--preset--color--primary) !important; } .text-stroke--secondary { -webkit-text-stroke-width: var( --wp--custom--typography--text-stroke-width, 2px ) !important; -webkit-text-stroke-color: var(--wp--preset--color--secondary) !important; } .editor\:no-caption .block-editor-rich-text__editable { display: none !important; } .editor\:no-inserter > .block-list-appender, .editor\:no-inserter .wp-block-group__inner-container > .block-list-appender { display: none !important; } .editor\:no-inserter .wp-block-cover__inner-container > .block-list-appender { display: none !important; } .editor\:no-inserter .wp-block-column:not(.is-selected) > .block-list-appender { display: none !important; } .editor\:no-resize .components-resizable-box__handle::after, .editor\:no-resize .components-resizable-box__side-handle::before, .editor\:no-resize .components-resizable-box__handle { display: none !important; pointer-events: none !important; } .editor\:no-resize .components-resizable-box__container { display: block !important; } .editor\:pointer-events-none { pointer-events: none !important; } .is-style-angled { /* no suggestion */ align-items: center !important; justify-content: flex-end !important; } .ext .is-style-angled > [class*="_inner-container"] { align-items: center !important; } .is-style-angled .wp-block-cover__image-background, .is-style-angled .wp-block-cover__video-background { /* no suggestion */ -webkit-clip-path: polygon(0 0, 30% 0%, 50% 100%, 0% 100%) !important; clip-path: polygon(0 0, 30% 0%, 50% 100%, 0% 100%) !important; z-index: 1 !important; } @media (min-width: 782px) { .is-style-angled .wp-block-cover__image-background, .is-style-angled .wp-block-cover__video-background { /* no suggestion */ -webkit-clip-path: polygon(0 0, 55% 0%, 65% 100%, 0% 100%) !important; clip-path: polygon(0 0, 55% 0%, 65% 100%, 0% 100%) !important; } } .has-foreground-color { /* no suggestion */ color: var(--wp--preset--color--foreground, #000) !important; } .has-foreground-background-color { /* no suggestion */ background-color: var(--wp--preset--color--foreground, #000) !important; } .has-background-color { /* no suggestion */ color: var(--wp--preset--color--background, #fff) !important; } .has-background-background-color { /* no suggestion */ background-color: var(--wp--preset--color--background, #fff) !important; } .has-primary-color { /* no suggestion */ color: var(--wp--preset--color--primary, #4b5563) !important; } .has-primary-background-color { /* no suggestion */ background-color: var(--wp--preset--color--primary, #4b5563) !important; } .has-secondary-color { /* no suggestion */ color: var(--wp--preset--color--secondary, #9ca3af) !important; } .has-secondary-background-color { /* no suggestion */ background-color: var(--wp--preset--color--secondary, #9ca3af) !important; } /* Ensure themes that target specific elements use the right colors */ .ext.has-text-color p, .ext.has-text-color h1, .ext.has-text-color h2, .ext.has-text-color h3, .ext.has-text-color h4, .ext.has-text-color h5, .ext.has-text-color h6 { /* no suggestion */ color: currentColor !important; } .has-white-color { /* no suggestion */ color: var(--wp--preset--color--white, #fff) !important; } .has-black-color { /* no suggestion */ color: var(--wp--preset--color--black, #000) !important; } .has-ext-foreground-background-color { /* no suggestion */ background-color: var( --wp--preset--color--foreground, var(--wp--preset--color--black, #000) ) !important; } .has-ext-primary-background-color { /* no suggestion */ background-color: var( --wp--preset--color--primary, var(--wp--preset--color--cyan-bluish-gray, #000) ) !important; } /* Fix button borders with specified background colors */ .wp-block-button__link.has-black-background-color { /* no suggestion */ border-color: var(--wp--preset--color--black, #000) !important; } .wp-block-button__link.has-white-background-color { /* no suggestion */ border-color: var(--wp--preset--color--white, #fff) !important; } .has-ext-small-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-small) !important; } .has-ext-medium-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-medium) !important; } .has-ext-large-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-large) !important; line-height: 1.2 !important; } .has-ext-x-large-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-x-large) !important; line-height: 1 !important; } .has-ext-xx-large-font-size { /* no suggestion */ font-size: var(--wp--preset--font-size--ext-xx-large) !important; line-height: 1 !important; } /* Line height */ .has-ext-x-large-font-size:not([style*="line-height"]) { /* no suggestion */ line-height: 1.1 !important; } .has-ext-xx-large-font-size:not([style*="line-height"]) { /* no suggestion */ line-height: 1.1 !important; } .ext .wp-block-group > * { /* Line height */ margin-top: 0 !important; margin-bottom: 0 !important; } .ext .wp-block-group > * + * { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: 0 !important; } .ext h2 { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .has-ext-x-large-font-size + p, .has-ext-x-large-font-size + h3 { margin-top: 0.5rem !important; } .ext .wp-block-buttons > .wp-block-button.wp-block-button__width-25 { width: calc(25% - var(--wp--style--block-gap, 0.5em) * 0.75) !important; min-width: 12rem !important; } /* Classic themes use an inner [class*="_inner-container"] that our utilities cannot directly target, so we need to do so with a few */ .ext .ext-grid > [class*="_inner-container"] { /* no suggestion */ display: grid !important; } /* Unhinge grid for container blocks in classic themes, and < 5.9 */ .ext > [class*="_inner-container"] > .ext-grid:not([class*="columns"]), .ext > [class*="_inner-container"] > .wp-block > .ext-grid:not([class*="columns"]) { /* no suggestion */ display: initial !important; } /* Grid Columns */ .ext .ext-grid-cols-1 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-2 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-3 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-4 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-5 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-6 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-7 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-8 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-9 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-10 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-11 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-12 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-13 > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: repeat(13, minmax(0, 1fr)) !important; } .ext .ext-grid-cols-none > [class*="_inner-container"] { /* no suggestion */ grid-template-columns: none !important; } /* Grid Rows */ .ext .ext-grid-rows-1 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(1, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-2 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(2, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-3 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(3, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-4 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(4, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-5 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(5, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-6 > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: repeat(6, minmax(0, 1fr)) !important; } .ext .ext-grid-rows-none > [class*="_inner-container"] { /* no suggestion */ grid-template-rows: none !important; } /* Align */ .ext .ext-items-start > [class*="_inner-container"] { align-items: flex-start !important; } .ext .ext-items-end > [class*="_inner-container"] { align-items: flex-end !important; } .ext .ext-items-center > [class*="_inner-container"] { align-items: center !important; } .ext .ext-items-baseline > [class*="_inner-container"] { align-items: baseline !important; } .ext .ext-items-stretch > [class*="_inner-container"] { align-items: stretch !important; } .ext.wp-block-group > *:last-child { /* no suggestion */ margin-bottom: 0 !important; } /* For <5.9 */ .ext .wp-block-group__inner-container { /* no suggestion */ padding: 0 !important; } .ext.has-background { /* no suggestion */ padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } /* Fallback for classic theme group blocks */ .ext *[class*="inner-container"] > .alignwide *[class*="inner-container"], .ext *[class*="inner-container"] > [data-align="wide"] *[class*="inner-container"] { /* no suggestion */ max-width: var(--responsive--alignwide-width, 120rem) !important; } .ext *[class*="inner-container"] > .alignwide *[class*="inner-container"] > *, .ext *[class*="inner-container"] > [data-align="wide"] *[class*="inner-container"] > * { /* no suggestion */ } .ext *[class*="inner-container"] > .alignwide *[class*="inner-container"] > *, .ext *[class*="inner-container"] > [data-align="wide"] *[class*="inner-container"] > * { max-width: 100% !important; } /* Ensure image block display is standardized */ .ext .wp-block-image { /* no suggestion */ position: relative !important; text-align: center !important; } .ext .wp-block-image img { /* no suggestion */ display: inline-block !important; vertical-align: middle !important; } body { /* no suggestion */ /* We need to abstract this out of tailwind.config because clamp doesnt translate with negative margins */ --extendify--spacing--large: var( --wp--custom--spacing--large, clamp(2em, 8vw, 8em) ) !important; /* Add pattern preset font sizes */ --wp--preset--font-size--ext-small: 1rem !important; --wp--preset--font-size--ext-medium: 1.125rem !important; --wp--preset--font-size--ext-large: clamp(1.65rem, 3.5vw, 2.15rem) !important; --wp--preset--font-size--ext-x-large: clamp(3rem, 6vw, 4.75rem) !important; --wp--preset--font-size--ext-xx-large: clamp(3.25rem, 7.5vw, 5.75rem) !important; /* Fallbacks for pre 5.9 themes */ --wp--preset--color--black: #000 !important; --wp--preset--color--white: #fff !important; } .ext * { box-sizing: border-box !important; } /* Astra: Remove spacer block visuals in the library */ .block-editor-block-preview__content-iframe .ext [data-type="core/spacer"] .components-resizable-box__container { /* no suggestion */ background: transparent !important; } .block-editor-block-preview__content-iframe .ext [data-type="core/spacer"] .block-library-spacer__resize-container::before { /* no suggestion */ display: none !important; } /* Twenty Twenty adds a lot of margin automatically to blocks. We only want our own margin added to our patterns. */ .ext .wp-block-group__inner-container figure.wp-block-gallery.alignfull { /* no suggestion */ margin-top: unset !important; margin-bottom: unset !important; } /* Ensure no funky business is assigned to alignwide */ .ext .alignwide { /* no suggestion */ margin-left: auto !important; margin-right: auto !important; } /* Negate blockGap being inappropriately assigned in the editor */ .is-root-container.block-editor-block-list__layout > [data-align="full"]:not(:first-of-type) > .ext-my-0, .is-root-container.block-editor-block-list__layout > [data-align="wide"] > .ext-my-0:not([style*="margin"]) { /* no suggestion */ margin-top: calc(-1 * var(--wp--style--block-gap, 28px)) !important; } /* Ensure vh content in previews looks taller */ .block-editor-block-preview__content-iframe .preview\:min-h-50 { /* no suggestion */ min-height: 50vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-60 { /* no suggestion */ min-height: 60vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-70 { /* no suggestion */ min-height: 70vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-80 { /* no suggestion */ min-height: 80vw !important; } .block-editor-block-preview__content-iframe .preview\:min-h-100 { /* no suggestion */ min-height: 100vw !important; } /* Removes excess margin when applied to the alignfull parent div in Block Themes */ .ext-mr-0.alignfull:not([style*="margin"]):not([style*="margin"]) { /* no suggestion */ margin-right: 0 !important; } .ext-ml-0:not([style*="margin"]):not([style*="margin"]) { /* no suggestion */ margin-left: 0 !important; } /* Ensures fullwidth blocks display properly in the editor when margin is zeroed out */ .is-root-container .wp-block[data-align="full"] > .ext-mx-0:not([style*="margin"]):not([style*="margin"]) { /* no suggestion */ margin-right: calc(1 * var(--wp--custom--spacing--outer, 0)) !important; margin-left: calc(1 * var(--wp--custom--spacing--outer, 0)) !important; overflow: hidden !important; width: unset !important; } @media (min-width: 782px) { .tablet\:ext-absolute { position: absolute !important; } .tablet\:ext-relative { position: relative !important; } .tablet\:ext-top-base { top: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-top-lg { top: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--top-base { top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--top-lg { top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-right-base { right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-right-lg { right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--right-base { right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--right-lg { right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-bottom-base { bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-bottom-lg { bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--bottom-base { bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--bottom-lg { bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-left-base { left: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-left-lg { left: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--left-base { left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--left-lg { left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-order-1 { order: 1 !important; } .tablet\:ext-order-2 { order: 2 !important; } .tablet\:ext-m-0:not([style*="margin"]) { margin: 0 !important; } .tablet\:ext-m-auto:not([style*="margin"]) { margin: auto !important; } .tablet\:ext-m-base:not([style*="margin"]) { margin: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-m-lg:not([style*="margin"]) { margin: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--m-base:not([style*="margin"]) { margin: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--m-lg:not([style*="margin"]) { margin: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mx-0:not([style*="margin"]) { margin-left: 0 !important; margin-right: 0 !important; } .tablet\:ext-mx-auto:not([style*="margin"]) { margin-left: auto !important; margin-right: auto !important; } .tablet\:ext-mx-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mx-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; margin-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mx-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mx-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-my-0:not([style*="margin"]) { margin-top: 0 !important; margin-bottom: 0 !important; } .tablet\:ext-my-auto:not([style*="margin"]) { margin-top: auto !important; margin-bottom: auto !important; } .tablet\:ext-my-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-my-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--my-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--my-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mt-0:not([style*="margin"]) { margin-top: 0 !important; } .tablet\:ext-mt-auto:not([style*="margin"]) { margin-top: auto !important; } .tablet\:ext-mt-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mt-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mt-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mt-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mr-0:not([style*="margin"]) { margin-right: 0 !important; } .tablet\:ext-mr-auto:not([style*="margin"]) { margin-right: auto !important; } .tablet\:ext-mr-base:not([style*="margin"]) { margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mr-lg:not([style*="margin"]) { margin-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mr-base:not([style*="margin"]) { margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mr-lg:not([style*="margin"]) { margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-mb-0:not([style*="margin"]) { margin-bottom: 0 !important; } .tablet\:ext-mb-auto:not([style*="margin"]) { margin-bottom: auto !important; } .tablet\:ext-mb-base:not([style*="margin"]) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-mb-lg:not([style*="margin"]) { margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--mb-base:not([style*="margin"]) { margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--mb-lg:not([style*="margin"]) { margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-ml-0:not([style*="margin"]) { margin-left: 0 !important; } .tablet\:ext-ml-auto:not([style*="margin"]) { margin-left: auto !important; } .tablet\:ext-ml-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-ml-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext--ml-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .tablet\:ext--ml-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .tablet\:ext-block { display: block !important; } .tablet\:ext-inline-block { display: inline-block !important; } .tablet\:ext-inline { display: inline !important; } .tablet\:ext-flex { display: flex !important; } .tablet\:ext-inline-flex { display: inline-flex !important; } .tablet\:ext-grid { display: grid !important; } .tablet\:ext-inline-grid { display: inline-grid !important; } .tablet\:ext-hidden { display: none !important; } .tablet\:ext-w-auto { width: auto !important; } .tablet\:ext-w-full { width: 100% !important; } .tablet\:ext-max-w-full { max-width: 100% !important; } .tablet\:ext-flex-1 { flex: 1 1 0% !important; } .tablet\:ext-flex-auto { flex: 1 1 auto !important; } .tablet\:ext-flex-initial { flex: 0 1 auto !important; } .tablet\:ext-flex-none { flex: none !important; } .tablet\:ext-flex-shrink-0 { flex-shrink: 0 !important; } .tablet\:ext-flex-shrink { flex-shrink: 1 !important; } .tablet\:ext-flex-grow-0 { flex-grow: 0 !important; } .tablet\:ext-flex-grow { flex-grow: 1 !important; } .tablet\:ext-list-none { list-style-type: none !important; } .tablet\:ext-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .tablet\:ext-grid-cols-none { grid-template-columns: none !important; } .tablet\:ext-flex-row { flex-direction: row !important; } .tablet\:ext-flex-row-reverse { flex-direction: row-reverse !important; } .tablet\:ext-flex-col { flex-direction: column !important; } .tablet\:ext-flex-col-reverse { flex-direction: column-reverse !important; } .tablet\:ext-flex-wrap { flex-wrap: wrap !important; } .tablet\:ext-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } .tablet\:ext-flex-nowrap { flex-wrap: nowrap !important; } .tablet\:ext-items-start { align-items: flex-start !important; } .tablet\:ext-items-end { align-items: flex-end !important; } .tablet\:ext-items-center { align-items: center !important; } .tablet\:ext-items-baseline { align-items: baseline !important; } .tablet\:ext-items-stretch { align-items: stretch !important; } .tablet\:ext-justify-start { justify-content: flex-start !important; } .tablet\:ext-justify-end { justify-content: flex-end !important; } .tablet\:ext-justify-center { justify-content: center !important; } .tablet\:ext-justify-between { justify-content: space-between !important; } .tablet\:ext-justify-around { justify-content: space-around !important; } .tablet\:ext-justify-evenly { justify-content: space-evenly !important; } .tablet\:ext-justify-items-start { justify-items: start !important; } .tablet\:ext-justify-items-end { justify-items: end !important; } .tablet\:ext-justify-items-center { justify-items: center !important; } .tablet\:ext-justify-items-stretch { justify-items: stretch !important; } .tablet\:ext-justify-self-auto { justify-self: auto !important; } .tablet\:ext-justify-self-start { justify-self: start !important; } .tablet\:ext-justify-self-end { justify-self: end !important; } .tablet\:ext-justify-self-center { justify-self: center !important; } .tablet\:ext-justify-self-stretch { justify-self: stretch !important; } .tablet\:ext-p-0:not([style*="padding"]) { padding: 0 !important; } .tablet\:ext-p-base:not([style*="padding"]) { padding: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-p-lg:not([style*="padding"]) { padding: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-px-0:not([style*="padding"]) { padding-left: 0 !important; padding-right: 0 !important; } .tablet\:ext-px-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-px-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; padding-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-py-0:not([style*="padding"]) { padding-top: 0 !important; padding-bottom: 0 !important; } .tablet\:ext-py-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-py-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pt-0:not([style*="padding"]) { padding-top: 0 !important; } .tablet\:ext-pt-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pt-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pr-0:not([style*="padding"]) { padding-right: 0 !important; } .tablet\:ext-pr-base:not([style*="padding"]) { padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pr-lg:not([style*="padding"]) { padding-right: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pb-0:not([style*="padding"]) { padding-bottom: 0 !important; } .tablet\:ext-pb-base:not([style*="padding"]) { padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pb-lg:not([style*="padding"]) { padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-pl-0:not([style*="padding"]) { padding-left: 0 !important; } .tablet\:ext-pl-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; } .tablet\:ext-pl-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; } .tablet\:ext-text-left { text-align: left !important; } .tablet\:ext-text-center { text-align: center !important; } .tablet\:ext-text-right { text-align: right !important; } } @media (min-width: 1080px) { .desktop\:ext-absolute { position: absolute !important; } .desktop\:ext-relative { position: relative !important; } .desktop\:ext-top-base { top: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-top-lg { top: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--top-base { top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--top-lg { top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-right-base { right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-right-lg { right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--right-base { right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--right-lg { right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-bottom-base { bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-bottom-lg { bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--bottom-base { bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--bottom-lg { bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-left-base { left: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-left-lg { left: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--left-base { left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--left-lg { left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-order-1 { order: 1 !important; } .desktop\:ext-order-2 { order: 2 !important; } .desktop\:ext-m-0:not([style*="margin"]) { margin: 0 !important; } .desktop\:ext-m-auto:not([style*="margin"]) { margin: auto !important; } .desktop\:ext-m-base:not([style*="margin"]) { margin: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-m-lg:not([style*="margin"]) { margin: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--m-base:not([style*="margin"]) { margin: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--m-lg:not([style*="margin"]) { margin: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mx-0:not([style*="margin"]) { margin-left: 0 !important; margin-right: 0 !important; } .desktop\:ext-mx-auto:not([style*="margin"]) { margin-left: auto !important; margin-right: auto !important; } .desktop\:ext-mx-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mx-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; margin-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mx-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mx-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-my-0:not([style*="margin"]) { margin-top: 0 !important; margin-bottom: 0 !important; } .desktop\:ext-my-auto:not([style*="margin"]) { margin-top: auto !important; margin-bottom: auto !important; } .desktop\:ext-my-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-my-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--my-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--my-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mt-0:not([style*="margin"]) { margin-top: 0 !important; } .desktop\:ext-mt-auto:not([style*="margin"]) { margin-top: auto !important; } .desktop\:ext-mt-base:not([style*="margin"]) { margin-top: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mt-lg:not([style*="margin"]) { margin-top: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mt-base:not([style*="margin"]) { margin-top: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mt-lg:not([style*="margin"]) { margin-top: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mr-0:not([style*="margin"]) { margin-right: 0 !important; } .desktop\:ext-mr-auto:not([style*="margin"]) { margin-right: auto !important; } .desktop\:ext-mr-base:not([style*="margin"]) { margin-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mr-lg:not([style*="margin"]) { margin-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mr-base:not([style*="margin"]) { margin-right: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mr-lg:not([style*="margin"]) { margin-right: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-mb-0:not([style*="margin"]) { margin-bottom: 0 !important; } .desktop\:ext-mb-auto:not([style*="margin"]) { margin-bottom: auto !important; } .desktop\:ext-mb-base:not([style*="margin"]) { margin-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-mb-lg:not([style*="margin"]) { margin-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--mb-base:not([style*="margin"]) { margin-bottom: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--mb-lg:not([style*="margin"]) { margin-bottom: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-ml-0:not([style*="margin"]) { margin-left: 0 !important; } .desktop\:ext-ml-auto:not([style*="margin"]) { margin-left: auto !important; } .desktop\:ext-ml-base:not([style*="margin"]) { margin-left: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-ml-lg:not([style*="margin"]) { margin-left: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext--ml-base:not([style*="margin"]) { margin-left: calc(var(--wp--style--block-gap, 1.75rem) * -1) !important; } .desktop\:ext--ml-lg:not([style*="margin"]) { margin-left: calc(var(--extendify--spacing--large, 3rem) * -1) !important; } .desktop\:ext-block { display: block !important; } .desktop\:ext-inline-block { display: inline-block !important; } .desktop\:ext-inline { display: inline !important; } .desktop\:ext-flex { display: flex !important; } .desktop\:ext-inline-flex { display: inline-flex !important; } .desktop\:ext-grid { display: grid !important; } .desktop\:ext-inline-grid { display: inline-grid !important; } .desktop\:ext-hidden { display: none !important; } .desktop\:ext-w-auto { width: auto !important; } .desktop\:ext-w-full { width: 100% !important; } .desktop\:ext-max-w-full { max-width: 100% !important; } .desktop\:ext-flex-1 { flex: 1 1 0% !important; } .desktop\:ext-flex-auto { flex: 1 1 auto !important; } .desktop\:ext-flex-initial { flex: 0 1 auto !important; } .desktop\:ext-flex-none { flex: none !important; } .desktop\:ext-flex-shrink-0 { flex-shrink: 0 !important; } .desktop\:ext-flex-shrink { flex-shrink: 1 !important; } .desktop\:ext-flex-grow-0 { flex-grow: 0 !important; } .desktop\:ext-flex-grow { flex-grow: 1 !important; } .desktop\:ext-list-none { list-style-type: none !important; } .desktop\:ext-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; } .desktop\:ext-grid-cols-none { grid-template-columns: none !important; } .desktop\:ext-flex-row { flex-direction: row !important; } .desktop\:ext-flex-row-reverse { flex-direction: row-reverse !important; } .desktop\:ext-flex-col { flex-direction: column !important; } .desktop\:ext-flex-col-reverse { flex-direction: column-reverse !important; } .desktop\:ext-flex-wrap { flex-wrap: wrap !important; } .desktop\:ext-flex-wrap-reverse { flex-wrap: wrap-reverse !important; } .desktop\:ext-flex-nowrap { flex-wrap: nowrap !important; } .desktop\:ext-items-start { align-items: flex-start !important; } .desktop\:ext-items-end { align-items: flex-end !important; } .desktop\:ext-items-center { align-items: center !important; } .desktop\:ext-items-baseline { align-items: baseline !important; } .desktop\:ext-items-stretch { align-items: stretch !important; } .desktop\:ext-justify-start { justify-content: flex-start !important; } .desktop\:ext-justify-end { justify-content: flex-end !important; } .desktop\:ext-justify-center { justify-content: center !important; } .desktop\:ext-justify-between { justify-content: space-between !important; } .desktop\:ext-justify-around { justify-content: space-around !important; } .desktop\:ext-justify-evenly { justify-content: space-evenly !important; } .desktop\:ext-justify-items-start { justify-items: start !important; } .desktop\:ext-justify-items-end { justify-items: end !important; } .desktop\:ext-justify-items-center { justify-items: center !important; } .desktop\:ext-justify-items-stretch { justify-items: stretch !important; } .desktop\:ext-justify-self-auto { justify-self: auto !important; } .desktop\:ext-justify-self-start { justify-self: start !important; } .desktop\:ext-justify-self-end { justify-self: end !important; } .desktop\:ext-justify-self-center { justify-self: center !important; } .desktop\:ext-justify-self-stretch { justify-self: stretch !important; } .desktop\:ext-p-0:not([style*="padding"]) { padding: 0 !important; } .desktop\:ext-p-base:not([style*="padding"]) { padding: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-p-lg:not([style*="padding"]) { padding: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-px-0:not([style*="padding"]) { padding-left: 0 !important; padding-right: 0 !important; } .desktop\:ext-px-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-px-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; padding-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-py-0:not([style*="padding"]) { padding-top: 0 !important; padding-bottom: 0 !important; } .desktop\:ext-py-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-py-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pt-0:not([style*="padding"]) { padding-top: 0 !important; } .desktop\:ext-pt-base:not([style*="padding"]) { padding-top: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pt-lg:not([style*="padding"]) { padding-top: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pr-0:not([style*="padding"]) { padding-right: 0 !important; } .desktop\:ext-pr-base:not([style*="padding"]) { padding-right: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pr-lg:not([style*="padding"]) { padding-right: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pb-0:not([style*="padding"]) { padding-bottom: 0 !important; } .desktop\:ext-pb-base:not([style*="padding"]) { padding-bottom: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pb-lg:not([style*="padding"]) { padding-bottom: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-pl-0:not([style*="padding"]) { padding-left: 0 !important; } .desktop\:ext-pl-base:not([style*="padding"]) { padding-left: var(--wp--style--block-gap, 1.75rem) !important; } .desktop\:ext-pl-lg:not([style*="padding"]) { padding-left: var(--extendify--spacing--large, 3rem) !important; } .desktop\:ext-text-left { text-align: left !important; } .desktop\:ext-text-center { text-align: center !important; } .desktop\:ext-text-right { text-align: right !important; } } </style> <link rel='stylesheet' id='eikra-gfonts-css' href='//fonts.googleapis.com/css?family=Roboto%3A400%2C400i%2C500%2C500i%2C700%2C700i%26subset%3Dlatin%2Clatin-ext&ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-css' href='https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/css/bootstrap.min.css?ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/css/font-awesome.min.css?ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='eikra-meanmenu-css' href='https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/css/meanmenu.css?ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='eikra-default-css' href='https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/css/default.css?ver=4.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='eikra-style-css' href='https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/css/style.css?ver=4.3.1' type='text/css' media='all' /> <style id='eikra-style-inline-css' type='text/css'> .entry-banner { background-color: #DD1818; } .content-area { padding-top: 30px; padding-bottom: 30px; } </style> <link rel='stylesheet' id='eikra-vc-css' href='https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/css/vc.css?ver=4.3.1' type='text/css' media='all' /> <link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:500,400%7CRoboto%20Slab:600,700&display=swap&ver=1734325241" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:500,400%7CRoboto%20Slab:600,700&display=swap&ver=1734325241" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:500,400%7CRoboto%20Slab:600,700&display=swap&ver=1734325241" /></noscript><link rel='stylesheet' id='eikra-learnpress-css' href='https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/css/learnpress.css?ver=4.3.1' type='text/css' media='all' /> <style id='eikra-learnpress-inline-css' type='text/css'> @media all and (max-width: 767px) { html #wpadminbar {position: fixed;} } </style> <style id='eikra-dynamic-inline-css' type='text/css'> body, gtnbg_root, p { font-family: Roboto, sans-serif;; font-size: 14px; line-height: 24px; font-weight : 400; font-style: normal; } h1 { font-family: Roboto Slab; font-size: 30px; line-height: 44px; font-weight : ; font-style: normal; } h2 { font-family: Roboto Slab, sans-serif;; font-size: 18px; line-height: 24px; font-weight : 600; font-style: normal; } h3 { font-family: Roboto Slab, sans-serif;; font-size: 19px; line-height: 26px; font-weight : 600; font-style: normal; } h4 { font-family: Roboto Slab, sans-serif;; font-size: 16px; line-height: 18px; font-weight : ; font-style: normal; } h5 { font-family: Roboto Slab, sans-serif;; font-size: 14px; line-height: 16px; font-weight : ; font-style: normal; } h6 { font-family: Roboto Slab, sans-serif;; font-size: 12px; line-height: 14px; font-weight : 700; font-style: normal; } a,a:link,a:visited { color: #ed1b24; } a:hover, a:focus, a:active { color: #ffffff; } .wp-block-quote::before { background-color: #ed1b24; } .wp-block-pullquote { border-color: #ed1b24; } .primary-color { color: #ed1b24; } .secondery-color { color: #ffffff; } .primary-bgcolor { background-color: #ed1b24; } .secondery-bgcolor { background-color: #ffffff; } #tophead { background-color: #6f6f6f; } #tophead, #tophead a, #tophead .tophead-social li a, #tophead .tophead-social li a:hover { color: #ffffff; } #tophead .tophead-contact i[class^="fa"], #tophead .tophead-address i[class^="fa"] { color: #fdc800; } .trheader #tophead, .trheader #tophead a, .trheader #tophead .tophead-social li a, .trheader #tophead .tophead-social li a:hover { color: #d0d6dd; } .topbar-style-4 #tophead a.topbar-btn { background-color: #ffffff; border-color: #ffffff; color: #ed1b24; } .topbar-style-5 #tophead .widget ul li i { color: #fdc800; } .site-header .main-navigation ul li a { font-family: Roboto, sans-serif; font-size : 16px; font-weight : ; line-height : 19px; color: #0f0f0f; text-transform : capitalize; font-style: normal; } .site-header .main-navigation ul.menu > li > a:hover, .site-header .main-navigation ul.menu > li.current-menu-item > a, .site-header .main-navigation ul.menu > li.current > a { color: #ed1b24; } .site-header .main-navigation ul li a.active { color: #ed1b24 !important; } .trheader #masthead .main-navigation ul.menu > li > a, .trheader #masthead .main-navigation ul.menu > li > a:hover, .trheader #masthead .main-navigation ul.menu > li.current-menu-item > a, .trheader #masthead .main-navigation ul.menu > li.current > a, .trheader #masthead .search-box .search-button i, .trheader #masthead .header-icon-seperator, .trheader #masthead .header-icon-area .cart-icon-area > a, .trheader #masthead .additional-menu-area a.side-menu-trigger { color: #ffffff; } .site-header .main-navigation ul li ul li { background-color: #ffffff; } .site-header .main-navigation ul li ul li:hover { background-color: #ffffff; } .site-header .main-navigation ul li ul li a { font-family: Roboto, sans-serif; font-size : 15px; font-weight : 500; line-height : 20px; color: #0a0a0a; text-transform : none; font-style: normal; } .site-header .main-navigation ul li ul li:hover > a { color: #ed1b24; } #sticky-header-wrapper .site-header { border-color: #ed1b24} .site-header .main-navigation ul li.mega-menu > ul.sub-menu { background-color: #ffffff} .site-header .main-navigation ul li.mega-menu ul.sub-menu li a { color: #0a0a0a} .site-header .main-navigation ul li.mega-menu ul.sub-menu li a:hover { background-color: #ffffff; color: #ed1b24; } .mean-container a.meanmenu-reveal, .mean-container .mean-nav ul li a.mean-expand { color: #ed1b24; } .mean-container a.meanmenu-reveal span { background-color: #ed1b24; } .mean-container .mean-bar { border-color: #ed1b24; } .mean-container .mean-nav ul li a { font-family: Roboto, sans-serif; font-size : 14px; font-weight : 400; line-height : 21px; color: #0f0f0f; text-transform : uppercase; font-style: normal; } .mean-container .mean-nav ul li a:hover, .mean-container .mean-nav > ul > li.current-menu-item > a { color: #ed1b24; } body .mean-container .mean-nav ul li.mean-append-area .rtin-append-inner a.header-menu-btn { background-color: #ffffff; border-color: #ffffff; color: #ed1b24; } .header-icon-area .cart-icon-area .cart-icon-num { background-color: #ed1b24; } .mean-container .mean-bar .cart-icon-num { background-color: #ed1b24; } .site-header .search-box .search-text { border-color: #ed1b24; } .header-style-3 .header-social li a:hover, .header-style-3.trheader .header-social li a:hover { color: #ed1b24; } .header-style-3.trheader .header-contact li a, .header-style-3.trheader .header-social li a { color: #ffffff; } .header-style-4 .header-social li a:hover { color: #ed1b24; } .header-style-4.trheader .header-contact li a, .header-style-4.trheader .header-social li a { color: #ffffff; } .header-style-5 .header-menu-btn { background-color: #ed1b24; } .trheader.header-style-5 .header-menu-btn { color: #ffffff; } .header-style-6 .site-header, .header-style-6 #sticky-header-wrapper .site-header { background-color: #ed1b24; } .header-style-6 .site-header a.header-menu-btn { background-color: #ffffff; border-color: #ffffff; color: #ed1b24; } .header-style-6 .site-header .main-navigation ul.menu > li > a { color: #ffffff; } .header-style-7 .header-social a:hover { color: #ed1b24; } .header-style-7 a.header-menu-btn { background-color: #ffffff; } .header-style-7.trheader .header-social li a:hover { color: #ffffff; } .entry-banner .entry-banner-content h1 { color: #ededed; } .breadcrumb-area .entry-breadcrumb span a, .breadcrumb-area .entry-breadcrumb span a span { color: #fca400; } .breadcrumb-area .entry-breadcrumb span a:hover, .breadcrumb-area .entry-breadcrumb span a:hover span { color: #ffffff; } .breadcrumb-area .entry-breadcrumb { color: #ff7207; } .breadcrumb-area .entry-breadcrumb > span { color: #ffffff; } #preloader { background-color: #ed1b24; } .scrollToTop { background-color: #ffffff; } .footer-top-area { background-color: #1b1b1b; } .footer-top-area .widget > h3 { color: #ffffff; } .footer-top-area .widget { color: #ffffff; } .footer-top-area a:link, .footer-top-area a:visited, .footer-top-area widget_nav_menu ul.menu li:before { color: #ffffff; } .footer-top-area .widget a:hover, .footer-top-area .widget a:active { color: #ffffff; } .footer-top-area .search-form input.search-submit { color: #ed1b24; } .footer-top-area .widget_nav_menu ul.menu li:before { color: #ffffff; } .footer-bottom-area { background-color: #2c2b2d; color: #ffffff; } .search-form input.search-submit { background-color: #ed1b24; border-color: #ed1b24; } .search-form input.search-submit a:hover { color: #ed1b24; } .widget ul li a:hover { color: #ffffff; } .sidebar-widget-area .widget > h3 { color: #ed1b24; } .sidebar-widget-area .widget > h3:after { background-color: #ffffff; } .sidebar-widget-area .widget_tag_cloud a { color: #ed1b24; } .sidebar-widget-area .widget_tag_cloud a:hover { background-color: #ed1b24; } .widget.widget_rdtheme_about ul li a:hover { background-color: #ffffff; border-color: #ffffff; color: #ed1b24; } .widget.widget_rdtheme_info ul li i { color: #ffffff; } .pagination-area ul li a, .learn-press-pagination ul li a { background-color: #ed1b24 !important; } .pagination-area ul li.active a, .pagination-area ul li a:hover, .pagination-area ul li span.current, .pagination-area ul li .current, .learn-press-pagination ul li.active a, .learn-press-pagination ul li a:hover, .learn-press-pagination ul li span.current, .learn-press-pagination ul li .current { background-color: #ffffff !important; } .error-page-area { background-color: #f99c23; } .error-page-area .error-page h3 { color: #000000; } .error-page-area .error-page p { color: #634e00; } body .rdtheme-button-1, body .rdtheme-button-1:link { color: #ed1b24; } body .rdtheme-button-1:hover { background-color: #ed1b24; } body a.rdtheme-button-2, body .rdtheme-button-2 { background-color: #ed1b24; } body a.rdtheme-button-2:hover, body .rdtheme-button-2:hover { color: #ed1b24; background-color: #ffffff; } body a.rdtheme-button-3, body .rdtheme-button-3 { background-color: #ed1b24; } body a.rdtheme-button-3:hover, body .rdtheme-button-4:hover { color: #ed1b24; background-color: #ffffff; } .comments-area h3.comment-title { color: #ed1b24; } .comments-area h3.comment-title:after { background-color: #ffffff; } .comments-area .main-comments .comment-meta .comment-author-name, .comments-area .main-comments .comment-meta .comment-author-name a { color: #ed1b24; } .comments-area .main-comments .reply-area a { background-color: #ed1b24; } .comments-area .main-comments .reply-area a:hover { background-color: #ffffff; } #respond .comment-reply-title { color: #ed1b24; } #respond .comment-reply-title:after { background-color: #ffffff; } #respond form .btn-send { background-color: #ed1b24; } #respond form .btn-send:hover { background-color: #ffffff; } .entry-header h2.entry-title a, .entry-header .entry-meta ul li a:hover, .entry-footer .tags a:hover, .event-single .event-meta li, .event-single ul li span i, .event-single .event-info h3, .event-single .event-social h3 { color: #ed1b24; } button, input[type="button"], input[type="reset"], input[type="submit"], .entry-header .entry-thumbnail-area .post-date li:nth-child(odd), .event-single .event-thumbnail-area #event-countdown .event-countdown-each:nth-child(odd), .event-single .event-social ul li a, .instructor-single .rtin-content ul.rtin-social li a:hover { background-color: #ed1b24; } .entry-header h2.entry-title a:hover, .entry-header h2.entry-title a:hover, .entry-header .entry-meta ul li i, .event-single .event-meta li i { color: #ffffff; } .bar1::after, .bar2::after, .hvr-bounce-to-right:before, .hvr-bounce-to-bottom:before, .entry-header .entry-thumbnail-area .post-date li:nth-child(even), .event-single .event-thumbnail-area #event-countdown .event-countdown-each:nth-child(even), .event-single .event-social ul li a:hover { background-color: #ffffff; } .ls-bar-timer { background-color: #ffffff; border-bottom-color: #ffffff; } .instructor-single .rtin-content ul.rtin-social li a:hover { border-color: #ed1b24; } .list-style-1 li { color: #ed1b24; } .list-style-1 li::before { color: #ffffff; } .woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .rt-woo-nav .owl-custom-nav-title::after, .rt-woo-nav .owl-custom-nav .owl-prev:hover, .rt-woo-nav .owl-custom-nav .owl-next:hover, .woocommerce ul.products li.product .onsale, .woocommerce span.onsale, .woocommerce a.added_to_cart, .woocommerce div.product form.cart .button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, p.demo_store, .woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover, .woocommerce #respond input#submit[disabled]:disabled:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled:hover, .woocommerce a.button[disabled]:disabled:hover, .woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button[disabled]:disabled:hover, .woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button[disabled]:disabled:hover, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt { background-color: #ed1b24; } .product-grid-view .view-mode ul li.grid-view-nav a, .product-list-view .view-mode ul li.list-view-nav a, .woocommerce ul.products li.product h3 a:hover, .woocommerce ul.products li.product .price, .woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce div.product .product-meta a:hover, .woocommerce div.product .woocommerce-tabs ul.tabs li.active a, .woocommerce a.woocommerce-review-link:hover, .woocommerce-message::before, .woocommerce-info::before { color: #ed1b24; } .woocommerce-message, .woocommerce-info { border-color: #ed1b24; } .woocommerce .product-thumb-area .overlay { background-color: rgba(237, 27, 36, 0.8); } .woocommerce .product-thumb-area .product-info ul li a { border-color: #ffffff; } .woocommerce .product-thumb-area .product-info ul li a:hover { color: #ed1b24; background-color: #ffffff; } .contact-us-form .wpcf7-submit:hover { background-color: #ffffff; } .contact-form-2 h3, .contact-form-2 input[type="submit"]:hover { background-color: #ffffff; } .rt-vc-pagination .pagination-area ul li a, .rt-vc-pagination .pagination-area ul li span { background-color: #ed1b24; } .rt-vc-pagination .pagination-area ul li.active a, .rt-vc-pagination .pagination-area ul li a:hover, .rt-vc-pagination .pagination-area ul li .current { background-color: #ffffff; } body .entry-content .rdtheme-button-5, body .rdtheme-button-5 { border-color: #ffffff; } body .entry-content .rdtheme-button-5:hover, body .rdtheme-button-5:hover{ background-color: #ffffff; color: #ed1b24; } body .entry-content .rdtheme-button-6, body .rdtheme-button-6 { background-color: #ed1b24; } body .entry-content .rdtheme-button-6:hover, body .rdtheme-button-6:hover { background-color: #ffffff; color: #ed1b24; } body .rdtheme-button-7, body a.rdtheme-button-7 { background-color: #ed1b24; } body .rdtheme-button-7:hover, body a.rdtheme-button-7:hover { color: #ed1b24; background-color: #ffffff; } .entry-content .isotop-btn a:hover, .entry-content .isotop-btn .current { border-color: #ed1b24 !important; background-color: #ed1b24 !important; } .rt-owl-nav-1 .section-title .owl-custom-nav-title { color: #ed1b24; } .rt-owl-nav-1 .section-title .owl-custom-nav .owl-prev, .rt-owl-nav-1 .section-title .owl-custom-nav .owl-next { background-color: #ffffff; } .rt-owl-nav-1 .section-title .owl-custom-nav .owl-prev:hover, .rt-owl-nav-1 .section-title .owl-custom-nav .owl-next:hover { background-color: #ed1b24; } .rt-vc-title-left { color: #ed1b24; } .rt-vc-title h2 { color: #ed1b24; } .rt-info-box .media-heading, .rt-info-box .media-heading a, .rt-info-box.layout2 i, .rt-info-box.layout3 i, .rt-info-box.layout4:hover .rtin-icon i { color: #ed1b24; } .rt-info-box .media-heading a:hover, .rt-info-box.layout2:hover i, .rt-info-box.layout5 .rtin-icon i, .rt-info-box.layout5:hover .media-heading, .rt-info-box.layout6:hover .media-heading a { color: #ffffff; } .rt-info-box.layout4::before, .rt-info-box.layout4:hover { background-color: #ed1b24; } .rt-info-box.layout5 { background-color: rgba( 237, 27, 36, 0.8 ); } .rt-info-box.layout3:hover i, .rt-info-box.layout4 .rtin-icon i { background-color: #ffffff; } .rt-vc-infobox-6 .rtin-item .rtin-left .rtin-icon i { color: #ffffff; } .rt-vc-imagetext-2 .rtin-img:before { background-color: rgba(237, 27, 36, 0.6); } .rt-vc-imagetext-2 .rtin-img a { border-color: #ffffff; } .rt-vc-imagetext-2 .rtin-title a:hover { color: #ed1b24; } .rt-vc-text-title .rtin-title { color: #ed1b24; } .rt-vc-text-title.style2 .rtin-title::after { background-color: #ffffff; } .rt-vc-text-title.style3 .rtin-btn a { background-color: #ffffff; } .rt-vc-text-title.style4 .rtin-btn a { border-color: #ffffff; } .rt-vc-text-title.style4 .rtin-btn a:hover { background-color: #ffffff; } .rt-vc-text-button .rtin-btn a { background-color: #ffffff; } .rt-vc-cta .rtin-right { background-color: #ed1b24; } .rt-vc-cta .rtin-right .rtin-btn { background-color: #ffffff; border-color: #ffffff; color: #ed1b24; } .rt-vc-cta.style2 .rtin-right { background-color: #ffffff; } .rt-vc-cta.style2 .rtin-right .rtin-btn { background-color: #ed1b24; border-color: #ed1b24; } .rt-vc-cta.style2 .rtin-right .rtin-btn:hover { color: #ed1b24; } .rt-vc-posts .rtin-item .media-list .rtin-content-area h3 a { color: #ed1b24; } .rt-vc-posts .rtin-item .media-list .rtin-content-area h3 a:hover { color: #ffffff; } .rt-vc-posts .rtin-item .media-list .rtin-content-area .rtin-date { color: #ffffff; } .rt-vc-posts-2 { background-color: #ed1b24; } .rt-vc-posts-2 .rtin-item .rtin-date { color: #ffffff; } .rt-vc-posts-2 .rtin-btn:hover { color: #ffffff; } .rt-vc-posts-2 .rtin-btn i { color: #ffffff; } .rt-vc-posts-2 .rtin-item .rtin-title a:hover { color: #ffffff; } .rt-vc-research-1 .rtin-item .rtin-title::after, .rt-vc-research-2 .rtin-item .rtin-title::after, .rt-vc-research-3 .rtin-item .rtin-holder .rtin-title a:hover { background-color: #ffffff; } .rt-vc-research-1 .rtin-item .rtin-title a, .rt-vc-research-2 .rtin-item .rtin-title a, .rt-vc-research-3 .rtin-item .rtin-holder .rtin-title a:hover, .rt-vc-research-3 .rtin-item .rtin-holder .rtin-title a:hover i { color: #ed1b24; } .rt-vc-research-1 .rtin-item .rtin-title a:hover, .rt-vc-research-2 .rtin-item .rtin-title a:hover, .rt-vc-research-3 .rtin-item .rtin-holder .rtin-title a i { color: #ffffff; } .rt-vc-research-3 .rtin-item .rtin-holder .rtin-title a { background-color: #ed1b24; } .rt-vc-event .rtin-item .rtin-calender-holder .rtin-calender { background-color:#ffffff; } .rt-vc-event .rtin-item .rtin-calender-holder .rtin-calender:before, .rt-vc-event .rtin-item .rtin-calender-holder .rtin-calender:after, .rt-vc-event .rtin-item .rtin-calender-holder .rtin-calender h3, .rt-vc-event .rtin-item .rtin-calender-holder .rtin-calender h3 p, .rt-vc-event .rtin-item .rtin-calender-holder .rtin-calender h3 span, .rt-vc-event .rtin-item .rtin-right h3 a, .rt-vc-event .rtin-item .rtin-right ul li, .rt-vc-event .rtin-btn a:hover { color: #ed1b24; } .rt-vc-event .rtin-item .rtin-right h3 a:hover { color: #ffffff; } .rt-vc-event-box .rtin-item .rtin-meta i { color: #ffffff; } .rt-vc-event-box .rtin-item .rtin-btn a { background-color: #ffffff; border-color: #ffffff; } .rt-vc-counter .rtin-left .rtin-counter { border-bottom-color: #ffffff; } .rt-vc-counter .rtin-right .rtin-title { color: #ed1b24; } .rt-vc-testimonial .rt-item .rt-item-content-holder .rt-item-title { color: #ed1b24; } .rt-vc-testimonial .owl-theme .owl-dots .owl-dot.active span { background-color: #ed1b24; } .rt-vc-testimonial-2 .rtin-item .rtin-item-designation { color:#ffffff; } .rt-vc-testimonial-2 .owl-theme .owl-dots .owl-dot:hover span, .rt-vc-testimonial-2 .owl-theme .owl-dots .owl-dot.active span { background-color: #ffffff; border-color: #ffffff; } .rt-vc-testimonial-3 .rtin-item .rtin-content-area .rtin-title { color: #ed1b24; } .rt-countdown .rt-date .rt-countdown-section-2 { border-color: #ffffff; } .rt-event-countdown .rt-content h2, .rt-event-countdown .rt-content h3, .rt-event-countdown .rt-date .rt-countdown-section .rt-countdown-text .rtin-count, .rt-event-countdown .rt-date .rt-countdown-section .rt-countdown-text .rtin-text { color: #ed1b24; } .rt-event-countdown .rt-date .rt-countdown-section .countdown-colon, .rt-event-countdown.rt-dark .rt-date .rt-countdown-section .rt-countdown-text .rtin-count { color: #ffffff; } .rt-price-table-box1 span { color: #ed1b24; } .rt-price-table-box1 .rtin-price { background-color: #ed1b24; } .rt-price-table-box1 .rtin-btn { background-color: #ffffff; border-color: #ffffff; color: #ed1b24; } .rt-price-table-box1:hover { background-color: #ed1b24; } .rt-price-table-box1:hover .rtin-price { background-color: #ffffff; } .rt-pricing-box2 .rtin-title, .rt-pricing-box2 ul li { color: #ed1b24; } .rt-pricing-box2 .rtin-price { color: #ffffff; } .rt-price-table-box3 .rtin-title, .rt-price-table-box3 .rtin-price { color: #ed1b24; } .rt-price-table-box3 .rtin-btn { background-color: #ffffff; } .rt-price-table-box3.rtin-featured, .rt-price-table-box3:hover { background-color: #ed1b24; } .rt-gallery-1 .rt-gallery-wrapper .rt-gallery-box:before { background-color: rgba( 255, 255, 255, 0.8 ); } .rt-gallery-1 .rt-gallery-wrapper .rt-gallery-box .rt-gallery-content a { background-color: #ed1b24; } .rt-vc-video .rtin-item .rtin-btn { color: #ffffff; } .rt-vc-video .rtin-item .rtin-btn:hover { border-color: #ffffff; } .rt-vc-video.rt-light .rtin-item .rtin-title { color: #ed1b24; } .rt-vc-video.rt-light .rtin-item .rtin-btn { color: #ed1b24; border-color: #ffffff; } .rt-vc-contact-1 ul.rtin-item > li > i { color: #ed1b24; } .rt-vc-contact-1 ul.rtin-item > li .contact-social li a { color: #ed1b24; border-color: #ed1b24; } .rt-vc-contact-1 ul.rtin-item > li .contact-social li a:hover { background-color: #ed1b24; } .rt-vc-contact-2 ul.rtin-item > li { color: #ed1b24; } .rt-vc-contact-2 ul.rtin-item > li > i { color: #ffffff; } .rt-vc-contact-2 ul.rtin-item > li.rtin-social-wrap .rtin-social li a { background-color: #ffffff; } .rt-vc-contact-2 ul.rtin-item > li.rtin-social-wrap .rtin-social li a:hover { background-color: #ed1b24; } .rt-vc-instructor-1 .rtin-item .rtin-content .rtin-title a { color: #ed1b24; } .rt-vc-instructor-1 .rtin-item .rtin-content .rtin-title a:hover { color: #ffffff; } .rt-vc-instructor-1 .rtin-item .rtin-content .rtin-social li a { background-color: #ffffff; } .rt-vc-instructor-1 .rtin-item .rtin-content .rtin-social li a:hover { background-color: #ed1b24; } .rt-vc-instructor-2 .rtin-item .rtin-content .rtin-title a, .rt-vc-instructor-2 .rtin-item .rtin-content .rtin-social li a { color: #ffffff; } .rt-vc-instructor-2 .rtin-item .rtin-content .rtin-social li a:hover { border-color: #ffffff; background-color: #ffffff; } .rt-vc-instructor-2 .rtin-item:before { background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 55%, #ed1b24); } .rt-vc-instructor-2 .rtin-item:hover:after { background-color: rgba( 237, 27, 36 , 0.7 ); } .rt-vc-instructor-3 .rtin-item .rtin-meta span { color: #ffffff; } .rt-vc-instructor-3 .rtin-btn a { color: #ed1b24; border-color: #ed1b24; } .rt-vc-instructor-3 .rtin-btn a:hover { background-color: #ed1b24; } .rt-vc-instructor-4 .rtin-item .rtin-content:after { background-color: #ffffff; } .rt-vc-instructor-5 .rtin-item { background-color: #ffffff; } .rt-vc-instructor-5 .rtin-item .rtin-content .rtin-social li a:hover { background-color: #ed1b24; } .rt-vc-course-search .form-group .input-group .input-group-addon.rtin-submit-btn-wrap .rtin-submit-btn { background-color: #ffffff; } .rt-vc-course-slider.style-4.rt-owl-nav-1 .section-title .owl-custom-nav .owl-prev:hover, .rt-vc-course-slider.style-4.rt-owl-nav-1 .section-title .owl-custom-nav .owl-next:hover { background-color: #ffffff; } .rt-vc-course-featured .rtin-sec-title { color: #ed1b24; } .rt-vc-course-featured .rt-course-box .rtin-thumbnail::before { background-color: rgba( 255, 255, 255 , 0.8 ); } .rt-vc-course-featured .rt-course-box .rtin-thumbnail a { background-color: #ed1b24; border-color: #ed1b24; } .rt-vc-course-isotope.style-2 .isotop-btn a { border-color: #ed1b24; } .rt-vc-course-isotope.style-2 .rtin-btn a { color: #ed1b24; border-color: #ed1b24; } .rt-vc-course-isotope.style-2 .rtin-btn a:hover { background-color: #ed1b24; } .wpb_gallery .wpb_flexslider .flex-direction-nav a { background-color: #ffffff; } .wpb-js-composer .vc_tta.vc_tta-o-no-fill .vc_tta-panels .vc_tta-panel-body { background-color: #ed1b24 !important; } .wpb-js-composer .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-title > a, .wpb-js-composer .vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a { color: #ed1b24 !important; } .wpb-js-composer .vc_tta-style-classic .vc_tta-controls-icon:after, .wpb-js-composer .vc_tta-style-classic .vc_tta-controls-icon:before { border-color: #ed1b24 !important; } .wpb-js-composer .vc_tta-container .vc_tta-panel span.faq-box-count { background-color: #ffffff; color: #ed1b24; } </style> <script type="text/javascript" src="https://sijoul.sandipuniversity.edu.in/blog/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://sijoul.sandipuniversity.edu.in/blog/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <link rel="https://api.w.org/" href="https://sijoul.sandipuniversity.edu.in/blog/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://sijoul.sandipuniversity.edu.in/blog/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.6.2" /> <meta name="generator" content="Redux 4.3.20" /><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/> <style type="text/css" id="wp-custom-css"> footer .widget ul { list-style: none; margin-top: 5px; } p { margin: 0 0 11px; } .search-box-area { padding-top: 21px; padding-bottom: 21px; color: #222; } .entry-banner .entry-banner-content h1 { font-size: 21px; } .fa-search:before { content: "\f002"; padding: 10px; background-color: #dd1818; color: #fff; border-radius: 100%; } .post-each { margin-bottom: 55px; background-color: #f5f5f5; padding: 15px; } .wpem-event-sidebar-button{display:none;} .wpem-event-single-image img { height: auto!important; } .wpem-event-single-image{ width: 700px; margin-left: auto; margin-right: auto; } body .rdtheme-button-2, body a.rdtheme-button-2 { padding: 8px 22px; background-color: #002147; transition: .3s ease-out; background-color: #ed1b24; } .wpem-event-listings .wpem-event-layout-wrapper .event_listing { width: 100%; height: 100%; border: #b9b4b4 solid 2px; } .site-header ul li { padding-top: 5px!important; } .wpem-single-event-body-content ul {padding-left: 0px;!important;} .pagination-area ul li.active a, .pagination-area ul li a:hover{background-color: #000000 !important;} ul li, p { font-family: Roboto, sans-serif; font-size: 14px; line-height: 24px; font-weight: 400; font-style: normal; } .redbtn{color: #000!important; background-color: #ff0; padding: 10px; font-weight: bold; } .wpem-single-event-page .wpem-heading-text { font-size: 19px; font-weight: 700; color: #ff0000; padding: 0; margin: 0; line-height: 1.42; } .footer-top-area ul li { border-bottom: 1px dashed #48433a!important; font-size: 13px; } footer .widget ul { margin-left: 0px!important; } .footertitle { color: #f9be2b!important; } .wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-infomation .wpem-event-details .wpem-event-title .wpem-heading-text { font-size: 16px; line-height: 1.42; font-weight: 700; color: #ed1b24; margin: 0 0 6px; } .addresstitle { background-color: #faff00; color: #000; font-size: 15px!important; padding-top: 19px; margin-bottom: 14px; font-weight: 600; width: 70%; padding: 5px 10px; } footer .widget ul { list-style: none; margin-top: 5px; } .footer-top-area .widget_nav_menu ul.menu li { display: block; vertical-align: top; width: 100%; } .footer-top-area .widget_nav_menu ul.menu li:before { display:none!important; } .list-inline>li { padding-left: 2px; padding-right: 2px; display: inline-block; } .sidebar-widget-area ul li { border-bottom: 1px solid #e0e0e0; margin-bottom: 0px; padding-bottom: 10px; } .site-header .main-navigation ul { text-align: right; line-height: 68px; } .entry-header .entry-thumbnail-area .post-date li:nth-child(even) { background-color: #fdc800; color: #ffffff; font-weight: 500; } .event-single .event-contents { margin-bottom: 0px; } .widget ul li a:hover { color: #f44336; } a, a:link, a:visited { color: #ed1b24; text-decoration: none; } .entry-banner .entry-banner-content h1 { font-size: 21px; } .site-header .main-navigation ul li ul li { background-color: #ffffff; padding: 0px; } .site-header ul li { padding-top: 22px; } .post-each { margin-bottom: 55px; background-color: #f5f5f5; } .entry-title, .entry-content,.entry-footer{padding:0px 10px;} .entry-footer .tags a {Font-weight:bold;color:#ff3b00;} .sidebar-widget-area ul li { margin-bottom: 0px!important; } .site-header .main-navigation ul li a { padding: 0px 5px!important; } .entry-header .entry-thumbnail-area { margin-bottom: 5px; } .breadcrumb-area .entry-breadcrumb span { color: #ffffff!important; } .wpem-event-location-text{display:none;} .wpem-event-listings .wpem-event-layout-wrapper .wpem-event-infomation .wpem-event-details .wpem-event-location::before { display :none;} .wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-banner .wpem-event-date .wpem-event-date-type .wpem-from-date { color:#fff!important; background: #ef0a0a; } .wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-banner .wpem-event-date .wpem-event-date-type .wpem-from-date .wpem-date { font-size: 23px; line-height: 23px; font-weight: 600; color: #ffffff; } .wpem-event-listings.wpem-event-listing-box-view .wpem-event-layout-wrapper .wpem-event-banner .wpem-event-date .wpem-event-date-type .wpem-from-date .wpem-month { font-size: 13px; text-transform: uppercase; font-weight: 600; line-height: 15px; color: #ffc800; } .pagination-area ul li a:hover{color:#000;} .entry-header h2.entry-title a:hover, .entry-header h2.entry-title a:hover, .entry-header .entry-meta ul li i, .event-single .event-meta li i { color: #ff0000!important; } a:hover { color: #ff0000!important; } .wpem-single-event-page .wpem-single-event-wrapper .wpem-single-event-body .wpem-single-event-left-content .wpem-single-event-body-content p { word-break: break-word; text-align: left; } .wpem-event-organizer-name{display:none!important;} .wpem-venue-profile-wrapper{display:none;} .wpem-event-single-image img{Height:450px!important;} .gallery-columns-4 .gallery-item { margin: 0px!important; padding: 4px 5px!important; } .gallery-item { max-width: 25%; border: #ccc solid 1px; padding: 3px; } @media screen and (max-width: 992px) { .wpem-single-event-page .wpem-single-event-wrapper .wpem-single-event-header-top .wpem-event-single-image-wrapper .wpem-event-single-image img { height: auto; width: 40%; } } </style> <noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript><!-- Global site tag (gtag.js) - Google Analytics 19-11-2024 --> <script src="https://www.googletagmanager.com/gtag/js?id=G-RF3XVLGL6E" defer></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-RF3XVLGL6E'); </script> <!-- Global site tag (gtag.js) - Google Analytics 24-10-2024 --> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "p0ve3n6cv9"); </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-PJSFVGTZ');</script> <!-- End Google Tag Manager --> </head> <body class="home blog wp-embed-responsive header-style-1 has-sidebar rt-course-grid-view product-grid-view wpb-js-composer js-comp-ver-6.6.0 vc_responsive"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PJSFVGTZ" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="page" class="site"> <a class="skip-link screen-reader-text" href="#content">Skip to content</a> <header id="masthead" class="site-header"> <div class="container masthead-container"> <div class="row"> <div class="col-sm-2 col-xs-12"> <div class="site-branding"> <a class="dark-logo" href="https://sijoul.sandipuniversity.edu.in/"><img src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/logo-dark.png" alt="Sandip University Blog" aria-label="Sandip University Logo"></a> <a class="light-logo" href="https://sijoul.sandipuniversity.edu.in/"><img src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/logo-dark.png" alt="Sandip University Blog" aria-label="Sandip University Logo"></a> <!--<a class="dark-logo" href="https://sandipuniversity.edu.in/"><img src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/logo-dark.png" alt="Sijoul Website Blog"></a> <a class="light-logo" href="https://sandipuniversity.edu.in/"><img src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/logo-dark.png" alt="Sijoul Website Blog"></a>--> </div> </div> <!--<div class="col-sm-2 col-xs-12"> <div class="site-branding"> <a class="dark-logo" href="https://sijoul.sandipuniversity.edu.in/blog/"><img src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/logo-dark.png" alt="Sijoul Website Blog"></a> <a class="light-logo" href="https://sijoul.sandipuniversity.edu.in/blog/"><img src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/logo-dark.png" alt="Sijoul Website Blog"></a> </div> </div>--> <div class="col-sm-10 col-xs-12"> <div class="header-icon-area"> <div class="search-box-area"> <div class="search-box"> <form role="search" method="get" action="https://sijoul.sandipuniversity.edu.in/blog/"> <a href="#" class="search-close">x</a> <input type="text" name="s" class="search-text" placeholder="Search Here..." required> <a href="#" class="search-button"><i class="fas fa-search" aria-hidden="true"></i></a> </form> </div> </div> <div class="clear"></div> </div> <div id="site-navigation" class="main-navigation"> <nav class="menu-headetop-container"><ul id="menu-headetop" class="menu"><li id="menu-item-9" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-9"><a href="https://sijoul.sandipuniversity.edu.in/aboutus.php">About Us</a></li> <li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-16"><a href="#">Schools</a> <ul class="sub-menu"> <li id="menu-item-17" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17"><a href="https://sijoul.sandipuniversity.edu.in/engineering-technology/school-of-engineering-technology.php">School of Engineering & Technology</a></li> <li id="menu-item-18" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-18"><a href="https://sijoul.sandipuniversity.edu.in/computer-science/school-of-computer-sciences-and-engineering.php">School of Computer Sciences & Engineering</a></li> <li id="menu-item-19" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19"><a href="https://sijoul.sandipuniversity.edu.in/management/school-of-commerce-and-management.php">School of Commerce and Management Studies</a></li> <li id="menu-item-20" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20"><a href="https://sijoul.sandipuniversity.edu.in/education/school-of-education.php">Shri Nityanand Jha College of Education</a></li> <li id="menu-item-21" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="https://sijoul.sandipuniversity.edu.in/agricultural/school-of-agricultural.php">School of Agriculture Science</a></li> <li id="menu-item-22" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-22"><a href="https://sijoul.sandipuniversity.edu.in/library-management/school-of-library-management.php">School of Library & Information Science</a></li> </ul> </li> <li id="menu-item-10" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10"><a href="https://sijoul.sandipuniversity.edu.in/programs-offered.php">Programs Offered</a></li> <li id="menu-item-23" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-23"><a href="#">Student Corner</a> <ul class="sub-menu"> <li id="menu-item-24" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-24"><a href="https://sijoul.sandipuniversity.edu.in/fees-structure.php">Fee Stucture</a></li> <li id="menu-item-25" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-25"><a href="https://sijoul.sandipuniversity.edu.in/rules-regulation.php">Rules & Regulations</a></li> <li id="menu-item-26" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-26"><a href="https://sijoul.sandipuniversity.edu.in/courses-intake.php">Course Intake</a></li> <li id="menu-item-27" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-27"><a href="https://sijoul.sandipuniversity.edu.in/admission-faq.php">Admission FAQs</a></li> <li id="menu-item-28" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-28"><a href="https://sijoul.sandipuniversity.edu.in/scholarship.php">Scholarship</a></li> <li id="menu-item-29" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-29"><a href="https://sijoul.sandipuniversity.edu.in/central-library.php">Central Library</a></li> </ul> </li> <li id="menu-item-11" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11"><a href="https://sijoul.sandipuniversity.edu.in/ev-lab.php">EV Labs</a></li> <li id="menu-item-14" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-14"><a href="https://sijoul.sandipuniversity.edu.in/results-notice.php">Results</a></li> <li id="menu-item-13" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13"><a href="https://sijoul.sandipuniversity.edu.in/pdf/All-courses-details.pdf">Brochures</a></li> <li id="menu-item-12" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12"><a href="https://sijouladmission.sandipuniversity.edu.in/">Admissions</a></li> <li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="https://sijoul.sandipuniversity.edu.in/phd/phd.php">Research</a></li> </ul></nav> </div> </div> </div> </div> <!--Chatboot--> <script>var Chatbot={appId:"sc990d2c0-ac94-4fcb-a619-4dee0ead245b",mode:"livechat"};!function(t,a){var e=function(){(e.q=e.q||[]).push(arguments)};e.q=e.q||[],t.ChatbotApi=e;!function(){var t=a.createElement("script");t.type="text/javascript",t.async=1,t.src="https://widget.installchatbot.com/static/js/widget.js";var e=a.getElementsByTagName("script")[0];e.parentNode.insertBefore(t,e)}();}(window,document)</script> <!--Chatbot--> </header> <div id="meanmenu"></div> <div id="content" class="site-content"> <div class="entry-banner"> <div class="container"> <div class="entry-banner-content"> <h1 class="entry-title">Informative Blogs for Engineering, Pharmacy Management Students & Young Professionals</h1> </div> </div> </div> <div id="primary" class="content-area"> <div class="container"> <div class="row"> <div class="col-sm-12 col-md-8 col-lg-9 col-12"> <main id="main" class="site-main"> <article id="post-73" class="post-each post-each-blog post-73 post type-post status-publish format-standard has-post-thumbnail hentry category-management"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/top-bba-college-in-bihar-with-best-placements-bright-future"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-BBA-Colleges-in-Bihar.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="Best BBA Colleges in Bihar" decoding="async" fetchpriority="high" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-BBA-Colleges-in-Bihar.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-BBA-Colleges-in-Bihar-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-BBA-Colleges-in-Bihar-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/top-bba-college-in-bihar-with-best-placements-bright-future">Top BBA College in Bihar with Best Placements & Bright Future</a></h2> </div> <div class="entry-content"> <p>Choosing a college is one of the most critical decisions for students who are about to pursue education in different fields. There are many institutions for BBA programs available, however, it is important to select one which caters for the needs of the market and offers quality education – an institution that has prospects for […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/top-bba-college-in-bihar-with-best-placements-bright-future" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-78" class="post-each post-each-blog post-78 post type-post status-publish format-standard has-post-thumbnail hentry category-why-sandip-university"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-sandip-university-top-engineering-college-in-bihar"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/top-engineering-colleges-in-bihar.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="top engineering colleges in bihar, Sandip University" decoding="async" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/top-engineering-colleges-in-bihar.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/top-engineering-colleges-in-bihar-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/top-engineering-colleges-in-bihar-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-sandip-university-top-engineering-college-in-bihar">Why Choose Sandip University: Top Engineering College in Bihar</a></h2> </div> <div class="entry-content"> <p>Choosing an institution for higher studies is an important decision that determines one’s career and professional life. For students who have completed their 12th standard and desire to pursue engineering courses, Sandip University Sijoul, one of the best engineering colleges in Bihar, comes across as an ideal university. It is one of the finest institutions […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-sandip-university-top-engineering-college-in-bihar" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-80" class="post-each post-each-blog post-80 post type-post status-publish format-standard has-post-thumbnail hentry category-civil-engineering"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/best-engineering-college-in-madhubani-fees-admission-details"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-Engineering-Colleges-in-Bihar.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="Best Engineering Colleges in Madhubani, Bihar" decoding="async" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-Engineering-Colleges-in-Bihar.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-Engineering-Colleges-in-Bihar-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Best-Engineering-Colleges-in-Bihar-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/best-engineering-college-in-madhubani-fees-admission-details">Best Engineering College in Madhubani: Fees & Admission Details</a></h2> </div> <div class="entry-content"> <p>As there are so many colleges everywhere students need to make the right decision on which engineering college to choose for their future goals. There are a number of institutions which offer quality education but Sandip University, Sijoul can be rated as one of the best engineering colleges in Bihar. Sandip University has provided great […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/best-engineering-college-in-madhubani-fees-admission-details" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-76" class="post-each post-each-blog post-76 post type-post status-publish format-standard has-post-thumbnail hentry category-computer-engineering"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-study-computer-engineering-at-sandip-university-sijoul-for-professional-advancement"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Computer-Engineering.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="Computer Engineering at Sandip University" decoding="async" loading="lazy" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Computer-Engineering.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Computer-Engineering-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/12/Computer-Engineering-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/why-study-computer-engineering-at-sandip-university-sijoul-for-professional-advancement">Why Study Computer Engineering at Sandip University Sijoul for Professional Advancement?</a></h2> </div> <div class="entry-content"> <p>Computer engineering is one of the most popular careers in the current digital age. With the demand for designing and developing novel tech solutions on the rise, students are on the lookout for universities where industry practitioners teach and are proactive in assisting students. One of the most popular choices in Bihar is Sandip University […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-study-computer-engineering-at-sandip-university-sijoul-for-professional-advancement" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-62" class="post-each post-each-blog post-62 post type-post status-publish format-standard has-post-thumbnail hentry category-management"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-an-mba-after-graduation"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Why-Choose-an-MBA-After-Graduation.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="Top Reasons to Pursue an MBA After Graduation: Unlock Your Career Potential" decoding="async" loading="lazy" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Why-Choose-an-MBA-After-Graduation.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Why-Choose-an-MBA-After-Graduation-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Why-Choose-an-MBA-After-Graduation-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-an-mba-after-graduation">Why Choose an MBA After Graduation? Boost Your Career Potential</a></h2> </div> <div class="entry-content"> <p>An MBA will offer you various advantages, especially when it’s from a well-reputed business school. Getting a high salary after graduation, achieving a management position, developing a strong professional network, or even becoming your own boss are just a few of the advantages of studying an MBA course. There are many advantages of pursuing an […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-an-mba-after-graduation" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-54" class="post-each post-each-blog post-54 post type-post status-publish format-standard has-post-thumbnail hentry category-electrical-engineering tag-b-tech-in-electrical-engineering tag-best-electrical-engineering-colleges-in-bihar"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/how-su-prepares-you-for-a-career-in-electrical-engineering"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Career-in-Electrical-Engineering.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="How Sandip University Prepares You for a Successful Career in Electrical Engineering" decoding="async" loading="lazy" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Career-in-Electrical-Engineering.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Career-in-Electrical-Engineering-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/11/Career-in-Electrical-Engineering-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/how-su-prepares-you-for-a-career-in-electrical-engineering">How Sandip University Prepares You for a Successful Career in Electrical Engineering</a></h2> </div> <div class="entry-content"> <p>In 2025, electrical engineering is all set to be at the heart of technological transformation, with industries worldwide experiencing a shift driven by sustainable energy, smart systems, and digitalisation. Pursuing B. Tech in Electrical Engineering from Sandip University offers students a chance to engage with these industry changes through a curriculum that combines solid theoretical […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/how-su-prepares-you-for-a-career-in-electrical-engineering" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-40" class="post-each post-each-blog post-40 post type-post status-publish format-standard has-post-thumbnail hentry category-mechanical-engineering tag-b-tech-in-mechanical-engineering tag-best-engineering-colleges-in-bihar tag-top-engineering-colleges-in-bihar"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-b-tech-in-mechanical-engineering-is-a-top-choice-in-2025"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Mechanical-Engineering.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="Why B.Tech in Mechanical Engineering is a Top Choice in 2025" decoding="async" loading="lazy" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Mechanical-Engineering.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Mechanical-Engineering-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Mechanical-Engineering-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/why-b-tech-in-mechanical-engineering-is-a-top-choice-in-2025">Why B.Tech in Mechanical Engineering is a Top Choice in 2025</a></h2> </div> <div class="entry-content"> <p>As we step into 2024, pursuing a B.Tech in Mechanical Engineering remains a top choice for aspiring engineers due to several evolving factors that align with the latest industry transformations. While traditional mechanical roles have been foundational, the field is witnessing a paradigm shift driven by emerging technologies, sustainability demands, and interdisciplinary applications, creating a […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-b-tech-in-mechanical-engineering-is-a-top-choice-in-2025" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-42" class="post-each post-each-blog post-42 post type-post status-publish format-standard has-post-thumbnail hentry category-civil-engineering tag-b-tech-in-civil-engineering tag-best-engineering-colleges-in-bihar"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/building-a-career-in-civil-engineering-why-sandip-universitys-b-tech-program-is-a-top-choice"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Civil-Engineering.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="Building a Career in Civil Engineering" decoding="async" loading="lazy" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Civil-Engineering.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Civil-Engineering-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/B.Tech-in-Civil-Engineering-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/building-a-career-in-civil-engineering-why-sandip-universitys-b-tech-program-is-a-top-choice">Building a Career in Civil Engineering: Why Sandip University’s B.Tech Program is a Top Choice</a></h2> </div> <div class="entry-content"> <p>If you are passionate about shaping the world through innovative designs and infrastructure, a career in Civil Engineering could be your ideal path. Sandip University in Sijoul, Madhubani, Bihar, offers a top-tier B.Tech in Civil Engineering program, designed to provide students with the skills and knowledge required to thrive in this field. Sandip University is […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/building-a-career-in-civil-engineering-why-sandip-universitys-b-tech-program-is-a-top-choice" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article><article id="post-32" class="post-each post-each-blog post-32 post type-post status-publish format-standard has-post-thumbnail hentry category-civil-engineering tag-best-engineering-colleges-in-bihar tag-top-engineering-colleges-in-bihar"> <div class="entry-header"> <div class="entry-thumbnail-area"> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-civil-engineering-at-sandip-university-sijoul-a-guide-for-2024-applicants"> <img width="820" height="400" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/Study-Civil-Engineering-at-Sandip-University.jpg" class="attachment-rdtheme-size1 size-rdtheme-size1 wp-post-image" alt="Why Study Civil Engineering at Sandip University Sijoul? A Comprehensive Guide for 2024 Applicants" decoding="async" loading="lazy" srcset="https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/Study-Civil-Engineering-at-Sandip-University.jpg 820w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/Study-Civil-Engineering-at-Sandip-University-300x146.jpg 300w, https://sijoul.sandipuniversity.edu.in/blog/wp-content/uploads/2024/10/Study-Civil-Engineering-at-Sandip-University-768x375.jpg 768w" sizes="(max-width: 820px) 100vw, 820px" /> </a> </div> <h2 class="entry-title"><a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-civil-engineering-at-sandip-university-sijoul-a-guide-for-2024-applicants">Why Choose Civil Engineering at Sandip University Sijoul? A Guide for 2024 Applicants</a></h2> </div> <div class="entry-content"> <p>Civil engineering is a growing and thriving discipline which helps in the expansion in development of infrastructures as well as the enhancement of living standards across the globe. Students who want to build a career in this field can go for a degree course at Sandip University Sijoul. In this article, we explore the reasons […]</p> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-civil-engineering-at-sandip-university-sijoul-a-guide-for-2024-applicants" class="readmore-btn rdtheme-button-2">Read More</a> </div> </article> </main> </div> <div class="col-sm-12 col-lg-3 col-md-4 col-12"> <aside class="sidebar-widget-area"> <div id="categories-2" class="widget widget_categories single-sidebar padding-bottom1"><h3 class="widgettitle">Categories</h3> <ul> <li class="cat-item cat-item-1"><a href="https://sijoul.sandipuniversity.edu.in/blog/category/civil-engineering">Civil Engineering</a> </li> <li class="cat-item cat-item-12"><a href="https://sijoul.sandipuniversity.edu.in/blog/category/computer-engineering">Computer Engineering</a> </li> <li class="cat-item cat-item-8"><a href="https://sijoul.sandipuniversity.edu.in/blog/category/electrical-engineering">Electrical Engineering</a> </li> <li class="cat-item cat-item-11"><a href="https://sijoul.sandipuniversity.edu.in/blog/category/management">Management</a> </li> <li class="cat-item cat-item-6"><a href="https://sijoul.sandipuniversity.edu.in/blog/category/mechanical-engineering">Mechanical Engineering</a> </li> <li class="cat-item cat-item-13"><a href="https://sijoul.sandipuniversity.edu.in/blog/category/why-sandip-university">Why Sandip University</a> </li> </ul> </div> <div id="recent-posts-2" class="widget widget_recent_entries single-sidebar padding-bottom1"> <h3 class="widgettitle">Latest Post</h3> <ul> <li> <a href="https://sijoul.sandipuniversity.edu.in/blog/top-bba-college-in-bihar-with-best-placements-bright-future">Top BBA College in Bihar with Best Placements & Bright Future</a> </li> <li> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-sandip-university-top-engineering-college-in-bihar">Why Choose Sandip University: Top Engineering College in Bihar</a> </li> <li> <a href="https://sijoul.sandipuniversity.edu.in/blog/best-engineering-college-in-madhubani-fees-admission-details">Best Engineering College in Madhubani: Fees & Admission Details</a> </li> <li> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-study-computer-engineering-at-sandip-university-sijoul-for-professional-advancement">Why Study Computer Engineering at Sandip University Sijoul for Professional Advancement?</a> </li> <li> <a href="https://sijoul.sandipuniversity.edu.in/blog/why-choose-an-mba-after-graduation">Why Choose an MBA After Graduation? Boost Your Career Potential</a> </li> </ul> </div> </aside> </div> </div> </div> </div> </div><!-- #content --> <style> .fa-phone:before { content: "\f095"; font-size: 19px!important; } #myBtn { display: none; position: fixed; bottom: 48px; left: 30px; z-index: 99; font-size: 18px; border: none; outline: none; background-color: red; color: #fff; cursor: pointer; padding: 6px; border-radius: 4px; font-weight: 700; } #myBtn:hover { background-color: #555; } .float { position: fixed; width: 60px; height: 60px; bottom: 72px; right: 23px; background-color: #25d366; color: #fff; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 100; } .my-float { margin-top: 16px; } .bs-chatbot-fab__nJAOV { /*margin-bottom: 83px!important;*/ margin-bottom: 165px!important; } </style> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"> <!--Whatsapp--> <!--Whatsapp--> <!--Icon--> <style> #side-quick-links-noti{ position:fixed; right:21px; bottom:106px; z-index:1000; display:block; } .last-span{ position: relative; padding:0.5rem 0.5rem 0.9rem 0.5rem; background-color: #ffffff; border-radius:0.3rem; font-size:12px; white-space:nowrap; box-shadow: 1px 2px 3px #aaa; font-weight:600; color:#ff0000; font-family: Helvetica; margin-right:11px; /*border:1px solid #ff0000;*/ } .last-span-icon{ background-color: #ff0016; color: #ffffff; padding: 14px 18px; font-size: 24px; border-radius: 48%; } .right-arr{ font-size: 1rem; color: white; position: absolute; top: 16px; /*right: 70px;*/ right: -5px; } .bell_section { top:105px; right: 0%; display: none; } .bell_icon_section-details { top:100px; display: none; } .bell_icon_second_section-details { top:100px; } #sb_container.sb-container-align-right a.sb-chat-btn { bottom:65px;} #sb_container.sb-container-align-right .sb-chat-bubble { bottom:65px; } .last-span small{ position: absolute; left: 9px; bottom: -3px; /*margin-bottom: -6px;*/ color: #464646; } #mobiledevice{display:none}.icon-angle-up::before,.icon-phone::before{content:'';margin-top:-10px;height:30px;display:inline-block}.cd-top,.cd-top a{color:#fff!important}@media (max-width:768px){.backtop{display:inline-block;cursor:pointer}.icon-angle-up::before{background:url(https://www.sandipuniversity.edu.in/images/sprite.png) -258px -92px no-repeat;width:24px}.icon-phone::before{background:url(https://www.sandipuniversity.edu.in/images/sprite.png) -305px -92px no-repeat;width:30px}.cd-top{display:flex;flex-wrap:nowrap;font-family:Roboto,sans-serif!important;background-color:#000;position:fixed;bottom:0;right:0;padding:8px 15px;box-shadow:0 0 10px rgba(0,0,0,.05);overflow:hidden;white-space:nowrap;opacity:1;-webkit-transition:opacity .3s,visibility 0 .3s;-moz-transition:opacity .3s,visibility 0 .3s;transition:opacity .3s,visibility 0 .3s;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:0;width:auto;text-align:center;z-index:9999;font-size:19px;justify-content:space-around}.cd-top a{display:block}#mobiledevice{display:none}.cd-top.cd-fade-out,.cd-top.cd-is-visible,.no-touch .cd-top:hover{-webkit-transition:opacity .3s,visibility;-moz-transition:opacity .3s,visibility;transition:opacity .3s,visibility}.cd-top.cd-is-visible{visibility:visible;opacity:1}.cd-top.cd-fade-out{opacity:1}.no-touch .cd-top:hover{background-color:#e86256;opacity:1}}@media(max-width:992px){.cd-top{width:100%}#mobiledevice{display:flex}}.cop{background-color:#211e1e;padding:9px 0}.foot-t{color:#fff;font-size:13px}.socila-ico{border-bottom:1px dashed #1b1b1b!important}.copy{position:absolute!important}.back-to-top{position:absolute;right:10px;bottom:10px;width:60px;line-height:60px;text-align:center;background:#d00000;color:#fff;font-size:18px;cursor:pointer}footer{background:#1b1b1b;position:relative;padding:41px 0 0;font-family:roboto;font-weight:300}.fa-phone:before{content:"\f095";font-size:31px}.zoom{position:fixed;bottom:45px;right:24px;height:70px;z-index:99999}.zoom-fab{display:inline-block;width:171px;height:41px;line-height:37px;border-radius:20px;background-color:#ed1b24;vertical-align:middle;text-decoration:none;text-align:center;transition:.2s ease-out;box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);cursor:pointer;color:#FFF!important}.btn.btn-danger{background-color:#ed1b24!important;border-color:#ed1b24!important;color:#fff;width:100px;text-transform:uppercase}.zoom-fab:hover{background-color:#000;box-shadow:0 3px 3px 0 rgba(0,0,0,0.14),0 1px 7px 0 rgba(0,0,0,0.12),0 3px 1px -1px rgba(0,0,0,0.2)}.btntxt{padding-left:10px;font-weight:700;font-size:15px}.scale-transition{transition:transform .3s cubic-bezier(0.53,0.01,0.36,1.63)!important}.scale-transition.scale-out{transform:scale(0);transition:transform .2s!important}.scale-transition.scale-in{transform:scale(1)}.dlab-gallery-listing{margin-left:73px!important}@media only screen and (max-width: 992px){.float{position:fixed;width:71px;height:71px;font-size:41px}.option1,.option2,.option3{height:133px;padding-top:49px;text-align:left;font-size:12px}.whitetext{padding-left:0}.ic{font-size:13px;padding:5px 2px;margin-bottom:3px!important}.ic1{margin-right:0!important;margin-bottom:3px!important}.dlab-gallery-listing{margin-left:-16px}}@media only screen and (max-width: 768px){.option1,.option2,.option3{height:133px;padding-top:49px;text-align:left;font-size:12px}.dlab-gallery-listing{margin-left:-16px}.whitetext,.whitetext1{padding-left:0}.ic{font-size:13px;padding:5px 2px;margin-bottom:3px}.ic1{margin-right:0!important;margin-bottom:3px!important}}select{text-transform:capitalize;font-size:13px!important;color:#757575!important}.h6,h6{font-size:1rem;text-align:left!important}footer ul li{border-bottom:1px dashed rgba(102,102,102,.3)} </style> <div id="side-quick-links-noti" style="display:none;"> <div class="last-date-notification"> <a target="_blank" href="https://admission.sandipuniversity.edu.in/"> <span class="last-span"> Limited seats are available. <small>Apply Now</small> <i class="fa fa-caret-right right-arr" aria-hidden="true"></i> </span> <span> </span> <span class="last-span-icon"> <i class="fa fa-bell" aria-hidden="true"></i> </span> </a> </div> </div> <!--Icon--> <footer> <div class="footer-top-area"> <div class="container"> <div class="row"> <div class="col-lg-3 col-md-6 col-12"><div id="text-5" class="widget widget_text"><h3 class="widgettitle">Quick Links</h3> <div class="textwidget"><ul class="site-map"> <li><a href="https://sijoul.sandipuniversity.edu.in/current-opening.php">Career</a></li> <li><a href="https://wecare.sandipuniversity.edu.in/" target="_blank" rel="noopener"> Students Grievance<br /> </a></li> <li><a href="https://sijoul.sandipuniversity.edu.in/membership.php">Inst. Membership</a></li> </ul> </div> </div></div><div class="col-lg-3 col-md-6 col-12"><div id="text-4" class="widget widget_text"><h3 class="widgettitle">Admissions</h3> <div class="textwidget"><ul class="site-map"> <li><a href="https://sijoul.sandipuniversity.edu.in/fees-structure.php"> Fee Structure</a></li> <li><a href="https://sijoul.sandipuniversity.edu.in/scholarship.php">Scholarship</a></li> <li><a href="https://sijoul.sandipuniversity.edu.in/admission-faq.php">FAQ’s</a></li> </ul> </div> </div></div><div class="col-lg-3 col-md-6 col-12"><div id="text-3" class="widget widget_text"><h3 class="widgettitle">Info Links</h3> <div class="textwidget"><ul class="site-map"> <li><a href="https://sijoul.sandipuniversity.edu.in/lms/">SUM-LMS</a></li> <li><a href="https://sijoul.sandipuniversity.edu.in/media-coverage.php">Media Coverage </a></li> <li><a href="https://sijoul.sandipuniversity.edu.in/commitees.php">Anti Ragging Committee & Anti Ragging Squad </a></li> </ul> </div> </div></div><div class="col-lg-3 col-md-6 col-12"><div id="text-2" class="widget widget_text"><h3 class="widgettitle">Contact Us</h3> <div class="textwidget"><ul class="address-widget"> <li> <i class="flaticon-location"></i></p> <div class="desc">Neelam Vidya Vihar, Village Sijoul, P.O. Mailam, Madhubani, Bihar, India.</div> </li> <li> <i class="flaticon-email"></i></p> <div class="desc"> <a> info.sijoul@sandipuniversity.edu.in</a> </p></div> </li> <li> <i class="flaticon-call"></i></p> <div class="desc"> <p> <a href="tel:1800-212-2714">1800-313-2714</a> </div> </li> </ul> </div> </div></div> </div> </div> </div> <div class="footer-bottom-area"> <div class="container"> <div class="row"> <div class="col-sm-12 col-xs-12 text-center">© 2025-26 Sandip University (Sijoul) | UGC Approved</div> </div> </div> </div> </footer> <a href="https://sijoul.sandipuniversity.edu.in/admission.php" target="_blank" id="myBtn" title="Go to top" style="display: block;"> Admission Enquiry 2025-26</a> <!--Sticky Footer--> <div class="cd-top" id="mobiledevice"> <div class="backtop"> <a href="https://sijoul.sandipuniversity.edu.in/admission.php" target="_blank"> <i class="icon-angle-up pr5"></i>Enquire Now </a> </div> <span style="padding:0 8px;" class="spacer">|</span> <span class="mobile-all-lp"><a href="tel:1800-313-2714" onclick="callFxn(this)" data-ps-track-call="1800-313-2714"><i class="icon-phone pr5"></i>Call Now</a></span> </div> <!--Sticky Footer--> </div><!-- #page --> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/js/bootstrap.min.js?ver=4.3.1" id="bootstrap-js"></script> <script type="text/javascript" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/js/jquery.meanmenu.min.js?ver=4.3.1" id="jquery-meanmenu-js"></script> <script type="text/javascript" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/js/jquery.nav.min.js?ver=4.3.1" id="jquery-nav-js"></script> <script type="text/javascript" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/js/js.cookie.min.js?ver=4.3.1" id="js-cookie-js"></script> <script type="text/javascript" id="eikra-main-js-extra"> /* <![CDATA[ */ var EikraObj = {"ajaxurl":"https:\/\/sijoul.sandipuniversity.edu.in\/blog\/wp-admin\/admin-ajax.php","hasAdminBar":"0","headerStyle":"1","stickyMenu":"1","meanWidth":"992","primaryColor":"#ed1b24","seconderyColor":"#ffffff","siteLogo":"<a href=\"https:\/\/sijoul.sandipuniversity.edu.in\/blog\/\" alt=\"Sijoul Website Blog\"><img class=\"logo-small\" src=\"https:\/\/sijoul.sandipuniversity.edu.in\/blog\/wp-content\/uploads\/2024\/10\/logo-dark.png\" \/><\/a>","day":"Day","hour":"Hour","minute":"Minute","second":"Second","extraOffset":"70","extraOffsetMobile":"52","rtl":"no","appendHtml":"<li class=\"mean-append-area rtin-search\"><div class=\"rtin-append-inner\"><form role=\"search\" method=\"get\" class=\"search-form\" action=\"https:\/\/sijoul.sandipuniversity.edu.in\/blog\/\">\n\t\t\t\t<label>\n\t\t\t\t\t<span class=\"screen-reader-text\">Search for:<\/span>\n\t\t\t\t\t<input type=\"search\" class=\"search-field\" placeholder=\"Search \u2026\" value=\"\" name=\"s\" \/>\n\t\t\t\t<\/label>\n\t\t\t\t<input type=\"submit\" class=\"search-submit\" value=\"Search\" \/>\n\t\t\t<\/form><\/div><\/li>","vcRtl":"no"}; /* ]]> */ </script> <script type="text/javascript" src="https://sijoul.sandipuniversity.edu.in/blog/wp-content/themes/eikra/assets/js/main.js?ver=4.3.1" id="eikra-main-js"></script> <script> //Get the button var mybutton = document.getElementById("myBtn"); // When the user scrolls down 20px from the top of the document, show the button window.onscroll = function() {scrollFunction()}; function scrollFunction() { if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { mybutton.style.display = "block"; } else { mybutton.style.display = "none"; } } // When the user clicks on the button, scroll to the top of the document function topFunction() { document.body.scrollTop = 0; document.documentElement.scrollTop = 0; } </script> </body> </html>