Wednesday, June 10, 2026

Creating Memorable Internet Experiences: A Trendy CSS Toolkit


I like the truth that CSS is lastly reclaiming management over visible interactions, taking cost of the styling, the animation, and the accessibility precisely because it ought to. As we speak, native browser capabilities permit us to maneuver the heavy lifting away from the JavaScript predominant thread and nearer to the GPU. By letting the browser’s engine optimize efficiency underneath the hood, we save vitality and processing energy whereas constructing code that’s sturdy, accessible, and impartial of exterior libraries which may deprecate tomorrow.

We now have 3D, trendy format strategies, clip-paths, transforms, customized properties, scroll-driven animations, view-transitions, @property — and we will animate nearly something, even to auto-height!

And, in fact, there’s SVG, which isn’t new, however permits us to construct complete web sites via illustrations and animations. Take the instance beneath: it’s responsive, light-weight, accessible, and powered primarily by CSS Grid + SVG.

We are able to even construct an complete online game together with the UI utilizing solely SVG:

What follows shouldn’t be a whole information to trendy CSS, however an opinionated choice of strategies I attain for after I need a website to really feel alive and be remembered. There are various methods to create memorable experiences. Typically it’s so simple as a kind that completes easily. However right here I’m within the expressive finish of the spectrum.

Movement as Communication: Defining Your Intent

Earlier than we dive into the technical aspect, I wish to make clear one thing: we shouldn’t transfer issues simply because we will.

Every little thing communicates, and our animations are not any exception. We should take the time to design actions that assist the message we wish to convey to be able to maintain our intents tightly scoped with out overdoing it.

Right here’s a technique I take advantage of when planning the design and animation of a website.

Think about we’re engaged on a venture for a nature occasion targeted on mushrooms. The design language modifications fully relying on the “vibe”: promoting a “Psychedelic Mushroom Rave” is worlds aside from a “Non secular Mushroom Retreat” targeted on ancestral drugs.

Each design choice communicates. I wish to create what I name key phrase lists to outline my intent and scope. For instance, I would break issues down into totally different choices:

Choice A: The Psychedelic Occasion

  • Visuals: Colourful, saturated, high-contrast, illustrations, distortions
  • Motion: Quick, frantic, unpredictable, morphing, rhythmic, synced loops, hypnotic
  • Feeling: Enjoyable, chaotic, energetic, stimulating, shocking
  • Typography: Funk, “psych-rock”
  • Fashion References: Pop Artwork, 60s/70s op artwork, rave flyers
  • Actions: Dancing
  • Extras: Emojis, movies (e.g., Concern and Loathing in Las Vegas)

Choice B: The Non secular Retreat

  • Visuals: Earth tones, impartial tones, de-saturated, photograph-heavy, nature, whitespace
  • Motion: Gradual, fluid, natural, respiration, delicate parallax, easy scrolling.
  • Feeling: Calm, serene, introspective, contemplative, protected
  • Typography: Elegant Serif, minimalist sans-serif, large spacing, legible
  • Fashion References: Scandinavian design, Japanese Wabi-sabi, wellness/spa aesthetics, botanical books
  • Actions: Respiratory
  • Extras: Therapeutic sounds, movie (e.g., Eat Pray Love)

That is the type of train I do to information my design and animation selections. The lists will assist me choose every little thing from which CSS properties I plan to make use of and the way to use them. I even share them with the shopper and, collectively, we select a path.

Let’s say we go along with Choice A and have a look at a couple of examples of what I feel are important elements for creating memorable consumer experiences.

Cut up Textual content Animations

These animations grew to become standard because of the GSAP SplitText plugin. It splits textual content by character (or phrases, or traces in the event you like) so we will create fascinating textual content results, like staggered animations.

This method wraps every letter in “Hola” in a span. From there, every span is inline-styled with a customized property indexing the spans so as. Which is one thing that may get rather a lot simpler when the sibling-index() perform beneficial properties broad browser assist.

However for now, every customized property worth acts as a multiplier that will increase an animation-delay, staggering every span. On this case we fade in every character because it strikes up.

.reveal-text span {
  animation: slideUp 0.6s ease-out forwards;
  animation-delay: calc(var(--i) * 0.1s);
  show: inline-block;
  opacity: 0;
  remodel: translateY(3rem);
}

@keyframes slideUp {
  to {
    opacity: 1;
    remodel: translateY(0);
  }
}

Accessibility is the tough half right here. The intuition is to cover all the person spans from assistive expertise with aria-hidden="true" and add a visually hidden model of the total phrase for display readers:

.sr-only {
  place: absolute;
  width: 1px;
  top: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

However be warned: this sample doesn’t assure a great expertise throughout all display readers. Adrian Roselli examined GSAP’s SplitText throughout eight display reader and browser mixtures and located it solely labored accurately in two of them. In case you ship this system, take a look at it with actual assistive expertise.

If that threat feels too excessive, there’s a really intelligent different from Preethi price realizing that makes use of the letter-spacing property. It accepts adverse values that collapse characters on prime of one another, hiding them with out touching the DOM in any respect. Animate it again to 0 and also you get an analogous reveal impact with out accessibility overhead.

What can be nice is a pseudo-selector like ::nth-letter to focus on particular person glyphs instantly from CSS the way in which ::first-letter selects the primary character. However sadly, there’s no ::nth-letter… at the least but.

Bear in mind to respect the consumer’s movement preferences on each animation:

@media (prefers-reduced-motion: scale back) {
  .reveal-text span {
    animation: none; /* or a softer animation */
  }
}

And right here we go:

It won't scale an excessive amount of when we have now a number of textual content and totally different animations we wish to apply. For the psychedelic occasion, I wished to attempt splitting textual content with SMIL, however it was verbose. That is the code for animating two letters alone:


  TODOS LOS HONGOS
  

Add position="img" and a </code> to the <code><svg/></code>, and wrap the person letters in <code><g aria-hidden="true"/></code>. That offers display readers one clear label to learn. It really works effectively in some mixtures and badly in others, so if the textual content is crucial, don’t animate it.</p> <p class="wp-block-paragraph">Right here is the whole code. It’s simpler to put in writing it when you have got an AI to do it for you:</p> <p><iframe id="cp_embed_EaPqxEw" src="https://codepen.io/anon/embed/preview/EaPqxEw?height=550&theme-id=1&slug-hash=EaPqxEw&default-tab=result" height="550" scrolling="no" frameborder="0" allowfullscreen="" allowpaymentrequest="" name="CodePen Embed EaPqxEw" title="CodePen Embed EaPqxEw" class="cp_embed_iframe" style="width:100%;overflow:hidden">CodePen Embed Fallback</iframe></p> <p class="wp-block-paragraph">For longer textual content, a library like GSAP provides you extra management, however the identical accessibility dangers we mentioned earlier apply, and the outcomes throughout display readers are inconsistent:</p> <pre rel="HTML" class="wp-block-csstricks-code-block language-markup" data-line=""><code markup="tt"/></pre> <pre rel="JavaScript" class="wp-block-csstricks-code-block language-javascript" data-line=""><code markup="tt">const splitFirst = SplitText.create('.splitfirst', { kind: "chars", }); const splitLast = SplitText.create('.splitlast', { kind: "chars, traces", masks: "traces" }); const tween = gsap.timeline() .from(splitFirst.chars, { xPercent: 100, stagger: 0.1, opacity: 0, period: 1, }) .from(splitLast.chars, { yPercent: 100, stagger: 0.1, opacity: 0, period: 1, });</code></pre> <p class="wp-block-paragraph">This may be a pleasant method for Choice B if we had gone that route. See how “serene” issues really feel because the textual content fades in.</p> <p><iframe id="cp_embed_JoGQpVN" src="https://codepen.io/anon/embed/preview/JoGQpVN?height=500&theme-id=1&slug-hash=JoGQpVN&default-tab=result" height="500" scrolling="no" frameborder="0" allowfullscreen="" allowpaymentrequest="" name="CodePen Embed JoGQpVN" title="CodePen Embed JoGQpVN" class="cp_embed_iframe" style="width:100%;overflow:hidden">CodePen Embed Fallback</iframe></p> <h2 id="masking-clipping" class="wp-block-heading"><a href="#masking-clipping" aria-hidden="true" class="aal_anchor" id="masking-clipping"><svg aria-hidden="true" class="aal_svg" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>Masking & Clipping</h2> <p class="wp-block-paragraph">The <a href="https://css-tricks.com/almanac/properties/c/clip-path/"><code>clip-path</code></a> and <a href="https://css-tricks.com/almanac/properties/m/mask/"><code>masks</code></a> properties permit us to cover parts of a component, however they work on essentially totally different rules. <strong>Clipping</strong> is a binary choice: pixels are both totally seen or fully gone,  making it the best alternative for clear geometric shapes, like polygons, circles, or SVG paths, the place the browser may optimize rendering extra effectively. <strong>Masking</strong>, however, makes use of luminance or alpha channel values: white reveals, black hides, and every little thing in between produces partial transparency. This makes it the instrument for gentle edges, gradient fades, and irregular textures. Remember the fact that in case you have a really advanced vector form, it could be extra performant to make use of a <code>masks</code> than a vector <code>clip-path</code>. <a href="https://css-tricks.com/masking-vs-clipping-use/">Sarah Drasner has a pleasant write-up on when it is sensible to make use of one over the opposite.</a></p> <p class="wp-block-paragraph">Our venture is a really clear use case for <code>clip-path</code>. We now have a circle form that begins with <code>clip-path: circle(0%)</code>, which makes the aspect invisible (the clipping circle has zero radius). Over the period of the animation it expands to <code>circle(100%)</code>, which totally reveals the aspect because the circle grows outward from its heart. In the meantime, we fade issues in with the assistance of <code>opacity</code>.</p> <pre rel="CSS" class="wp-block-csstricks-code-block language-css" data-line=""><code markup="tt">#rainbow, #ground, #mushroom, #flores { opacity: 0; animation: maskAnim 2s ease-in forwards; } @keyframes maskAnim { 0%, 1% { clip-path: circle(0%); opacity: 1; } 100% { clip-path: circle(100%); opacity: 1; } }</code></pre> <p class="is-style-explanation wp-block-paragraph"><strong>Be aware:</strong> The <code>1%</code> keyframe is there to verify the browser begins the <code>clip-path</code> interpolation from <code>circle(0%)</code> moderately than from no matter worth the aspect may have already got. With out it, some browsers will unexpectedly bounce on the very begin. A cleaner different is to make use of <code>animation-fill-mode: each</code> as a result of it locks the aspect in its <code>from</code> state earlier than the animation begins.</p> <p class="wp-block-paragraph">From there, we apply the identical animation to the totally different SVG teams in our illustration:</p> <pre rel="SVG" class="wp-block-csstricks-code-block language-svg" data-line=""><code markup="tt"><g id="rainbow">...</g> <g id="floor">...</g> <g id="mushroom">...</g> <g id="flowers">...</g></code></pre> <p class="wp-block-paragraph">How psychedelic is that this?!</p> <p><iframe id="cp_embed_MYKNYjO" src="https://codepen.io/anon/embed/preview/MYKNYjO?height=700&theme-id=1&slug-hash=MYKNYjO&default-tab=result" height="700" scrolling="no" frameborder="0" allowfullscreen="" allowpaymentrequest="" name="CodePen Embed MYKNYjO" title="CodePen Embed MYKNYjO" class="cp_embed_iframe" style="width:100%;overflow:hidden">CodePen Embed Fallback</iframe></p> <p class="wp-block-paragraph">Scroll-driven animations are nice as a result of we will join an animation’s progress to the consumer’s scrolling as a substitute of a typical timeline that runs and stops.</p> <p><baseline-status class="wp-block-css-tricks-baseline-status" featureid="scroll-driven-animations"/></p> <p class="wp-block-paragraph">We are able to use it for delicate and considerably “trippy” motion, like a light-weight parallax impact. On this case, we will make issues that seem nearer to the consumer transfer quicker than those which can be extra distant.</p> <p><iframe id="cp_embed_RNGqQgR" src="https://codepen.io/anon/embed/preview/RNGqQgR?height=450&theme-id=1&slug-hash=RNGqQgR&default-tab=result" height="450" scrolling="no" frameborder="0" allowfullscreen="" allowpaymentrequest="" name="CodePen Embed RNGqQgR" title="CodePen Embed RNGqQgR" class="cp_embed_iframe" style="width:100%;overflow:hidden">CodePen Embed Fallback</iframe></p> <p class="wp-block-paragraph">That is the total CSS:</p> <pre rel="CSS" class="wp-block-csstricks-code-block language-css" data-line=""><code markup="tt">#estrellas, #arcoiris, .text-line, #fecha, #arco, #flores, #dir, #piso, #barras { animation: moveUp each; animation-timeline: view(); } @keyframes moveUp { from { remodel: translateY(var(--offset)); opacity: 0; } to { remodel: translateY(0); opacity: 1; } } #estrellas { --offset: 10vh; } #arcoiris { --offset: 20vh; } #fecha { --offset: 45vh; } #arco { --offset: 50vh; } #dir { --offset: 50vh; } #flores { --offset: 65vh; } #piso { --offset: 85vh; } #barras { --offset: 90vh; }</code></pre> <p class="wp-block-paragraph">The <code>animation-timeline: view()</code> says that issues ought to begin the animation as quickly as a component enters the scrollport when the consumer scrolls into it, and totally completes when it scrolls out of view. To make issues transfer at totally different velocities, we place them at totally different offsets utilizing an listed <code>--offset</code> customized property like we did earlier for splitting textual content.</p> <h2 id="3d-transforms" class="wp-block-heading"><a href="#3d-transforms" aria-hidden="true" class="aal_anchor" id="3d-transforms"><svg aria-hidden="true" class="aal_svg" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>3D Transforms</h2> <p class="wp-block-paragraph">This one is trickier and we have to keep watch over efficiency. A instrument like <a href="https://layoutit.com" rel="noopener">Layoutit</a> <a href="https://layoutit.com" rel="noopener"/>may help carry the carry as a result of it has a <a href="https://voxels.layoutit.com/" rel="noopener">voxels</a> and <a href="http://terra.layoutit.com" rel="noopener">terrain generator</a> constructed fully with CSS 3D. It will probably go even additional when it’s complemented with <a href="https://voxcss.com/" rel="noopener">VoxCSS</a>, a full voxel engine that renders 3D cuboids utilizing solely CSS Grid layers and transforms with out the complexity of Canvas or WebGL.</p> <p class="wp-block-paragraph">Let’s put collectively some mixture scrolling and 3D results. It’s the form of factor that helps the “hypnotic” and “dancing” concepts within the Choice A key phrase record. Verify this out:</p> <p><iframe id="cp_embed_bNwQLEW" src="https://codepen.io/anon/embed/preview/bNwQLEW?height=650&theme-id=1&slug-hash=bNwQLEW&default-tab=result" height="650" scrolling="no" frameborder="0" allowfullscreen="" allowpaymentrequest="" name="CodePen Embed bNwQLEW" title="CodePen Embed bNwQLEW" class="cp_embed_iframe" style="width:100%;overflow:hidden">CodePen Embed Fallback</iframe></p> <p class="wp-block-paragraph">Right here, I’ve arrange a scene with depth utilizing the <a href="https://css-tricks.com/almanac/properties/p/perspective/"><code>perspective</code></a> property after which wrap all of the little one parts contained in the scene in a 3D area with <code>transform-style: preserve-3d</code>. This fashion, all of the little one picture parts rotate and translate alongside the depth axis (or z-axis).</p> <p class="wp-block-paragraph">Let’s join that to a scroll-driven animation that makes use of <code>remodel: rotateY</code>:</p> <pre rel="CSS" class="wp-block-csstricks-code-block language-css" data-line=""><code markup="tt">.scene { perspective: 1200px; } .img-wrapper { transform-style: preserve-3d; animation: rotateImg linear; animation-timeline: scroll(); > img { remodel: rotateY(270deg) translate3d(0, 50px, var(--distance)); } > img:nth-child(2) { remodel: rotateY(180deg) translate3d(0, 50px, var(--distance)); } } /* and so on. */ @keyframes rotateImg { to { remodel: rotateY(360deg); } }</code></pre> <h2 id="custom-cursors" class="wp-block-heading"><a href="#custom-cursors" aria-hidden="true" class="aal_anchor" id="custom-cursors"><svg aria-hidden="true" class="aal_svg" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>Customized Cursors</h2> <p class="wp-block-paragraph"><code>cursor</code> could be one of the unused CSS properties. There are <a href="https://css-tricks.com/almanac/properties/c/cursor/">many cursor varieties</a> we will use, though there are <a href="https://dbushell.com/2025/10/27/custom-cursor-accessibility/" rel="noopener">undoubtedly opinions on simply how far to go along with this</a>.</p> <p class="wp-block-paragraph">And we will use it to mess around with the photographs, displaying totally different cursors on totally different containers when the consumer hovers them. I might personally use an SVG and PNG picture for transparency assist, although the property helps any raster picture.</p> <p class="wp-block-paragraph">It’s price noting that cursor sizes differ by browser: Firefox caps customized cursors at 32×32px, whereas Chrome helps as much as 128×128px. Most browsers refuse to show — or will downscale — cursors which can be bigger than 32×32px on high-DPI (retina) screens. Preserving your cursor at 32×32px is the most secure alternative to make sure consistency.</p> <p class="wp-block-paragraph">For instance:</p> <pre rel="CSS" class="wp-block-csstricks-code-block language-css" data-line=""><code markup="tt">.box1 { cursor: url(knowledge:picture/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAZCAMAAAD63NUrAAAACVBMVEX///8AAAD///9+749PAAAAAXRSTlMAQObYZgAAAFZJREFUeNqdzksKwDAIAFHH+x+6lIYOVPOhs5OHJnES/5UkYKEkU7xjijSIm50iFh4fAXgYDd/yumVVRSwsqq/nRA3xVK0oo06d5U6DpQZ7PV7lMxH7LkaQAbYFwryzAAAAAElFTkSuQmCC),auto; }</code></pre> <p class="wp-block-paragraph">We are able to even set a number of fallbacks to make sure the widest degree of browser assist:</p> <pre rel="CSS" class="wp-block-csstricks-code-block language-css" data-line=""><code markup="tt">physique { cursor: url('path-to-image.png'), url('path-to-image-2.svg'), url('path-to-image-3.jpeg'), auto; }</code></pre> <p class="wp-block-paragraph">Whereas that is cool and all, we have now to maintain accessibility in thoughts for one thing that modifications default internet conduct like this. Customized cursors might be enjoyable to use to very particular parts moderately than wholesale throughout the board.</p> <p><iframe id="cp_embed_yyYKxBb" src="https://codepen.io/anon/embed/preview/yyYKxBb?height=400&theme-id=1&slug-hash=yyYKxBb&default-tab=result" height="400" scrolling="no" frameborder="0" allowfullscreen="" allowpaymentrequest="" name="CodePen Embed yyYKxBb" title="CodePen Embed yyYKxBb" class="cp_embed_iframe" style="width:100%;overflow:hidden">CodePen Embed Fallback</iframe></p> <h2 id="bonus-anchor-positioning" class="wp-block-heading"><a href="#bonus-anchor-positioning" aria-hidden="true" class="aal_anchor" id="bonus-anchor-positioning"><svg aria-hidden="true" class="aal_svg" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>Bonus: Anchor Positioning</h2> <p class="wp-block-paragraph">Another factor earlier than we wrap up. I’ve been enjoying with <a href="https://css-tricks.com/css-anchor-positioning-guide/">CSS Anchor Positioning</a>, impressed by a <a href="https://www.youtube.com/watch?v=8_NQ7ARXz8c" rel="noopener">Kevin Powell demo</a>. We are able to use it to connect a single pseudo-element to a currently-hovered merchandise as a substitute of attaching a pseudo-element for each merchandise. In different phrases, we create a single aspect and anchor it to a hovered aspect, like highlighting playing cards:</p> <p><iframe id="cp_embed_myrgRgR" src="https://codepen.io/anon/embed/preview/myrgRgR?height=980&theme-id=1&slug-hash=myrgRgR&default-tab=result" height="980" scrolling="no" frameborder="0" allowfullscreen="" allowpaymentrequest="" name="CodePen Embed myrgRgR" title="CodePen Embed myrgRgR" class="cp_embed_iframe" style="width:100%;overflow:hidden">CodePen Embed Fallback</iframe></p> <p class="wp-block-paragraph">That opens up fascinating potentialities, like with the ability to transition the hover state between playing cards. On this case, I’m utilizing the <a href="https://css-tricks.com/almanac/functions/l/linear/"><code>linear()</code></a> perform to get that pure bounce with assist from <a href="https://easingwizard.com" rel="noopener">Easing Wizard</a>.</p> <h2 id="conclusion" class="wp-block-heading"><a href="#conclusion" aria-hidden="true" class="aal_anchor" id="conclusion"><svg aria-hidden="true" class="aal_svg" height="16" version="1.1" viewbox="0 0 16 16" width="16"><path fill-rule="evenodd" d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z"/></svg></a>Conclusion</h2> <p class="wp-block-paragraph">The technical obstacles for creating memorable internet experiences are principally gone now. I hope every little thing we’ve lined right here provides you an thought of simply how far we will go along with trendy CSS options that fully take away the necessity for extra JavaScript. We now have extra potentialities than ever earlier than, all with out the necessity for advanced technical overhead like days previous.</p> <p class="wp-block-paragraph">So, as a substitute of asking, <em>is that this potential?</em>, an important query turns into, <em>does this motion inform a greater story?</em> If sure, ship it. Use these instruments not as a result of you possibly can, however as a result of they assist you inform a greater story, one which can be accessible and performant.</p> <p class="wp-block-paragraph">And, in fact, every little thing in right here is only a handful of how to do this. However what kind of memorable experiences have you ever utilized in your work? Or what have you ever seen on different websites?</p> </p></div> </div></div><div class="td_block_wrap tdb_single_tags tdi_112 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_112" > <style>.tdb_single_tags{margin-bottom:2px;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-weight:600}.tdb_single_tags span,.tdb_single_tags a{font-size:11px}.tdb_single_tags span{text-transform:uppercase}.tdb_single_tags a:hover{background-color:var(--td_theme_color,#4db2ec);border-color:var(--td_theme_color,#4db2ec);color:#fff}.tdb_single_tags ul{display:inline-block;margin:0;list-style-type:none;font-size:0}.tdb_single_tags li{display:inline-block;margin-left:0}.tdi_112 span{margin-right:4px;padding:2px 8px 3px;color:#fff;background-color:#222}.tdi_112 a{margin-right:4px;padding:1px 7px 2px;border:1px solid #ededed;color:#111}.tdi_112 a:hover{background-color:#008d7f;border-color:#008d7f}@media (min-width:1019px) and (max-width:1140px){.tdi_112 a{border:1px solid #ededed}}@media (min-width:768px) and (max-width:1018px){.tdi_112 a{border:1px solid #ededed}}@media (max-width:767px){.tdi_112 a{border:1px solid #ededed}}</style><div class="tdb-block-inner td-fix-index"><ul class="tdb-tags"><li><span>Tags</span></li><li><a href="https://analyticscampus.com/tag/creating/">Creating</a></li><li><a href="https://analyticscampus.com/tag/css/">CSS</a></li><li><a href="https://analyticscampus.com/tag/experiences/">Experiences</a></li><li><a href="https://analyticscampus.com/tag/memorable/">Memorable</a></li><li><a href="https://analyticscampus.com/tag/modern/">modern</a></li><li><a href="https://analyticscampus.com/tag/toolkit/">Toolkit</a></li><li><a href="https://analyticscampus.com/tag/web/">Web</a></li></ul></div></div><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_114 td_separator_solid td_separator_center"><span style="border-color:#EBEBEB;border-width:1px;width:100%;"></span> <style scoped>.tdi_114{margin-top:28px!important;margin-bottom:20px!important}</style></div><div class="td_block_wrap tdb_single_post_share tdi_115 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_115" > <style>.tdi_115 .td-post-sharing-visible{align-items:flex-start}</style><div id="tdi_115" class="td-post-sharing tdb-block td-ps-border td-ps-border-grey td-ps-padding td-ps-icon-color td-ps-text-color td-post-sharing-style17 "><div class="td-post-sharing-visible"><div class="td-social-sharing-button td-social-sharing-button-js td-social-handler td-social-share-text"> <div class="td-social-but-icon"><i class="td-icon-share"></i></div> <div class="td-social-but-text">Share</div> </div><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-facebook" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fanalyticscampus.com%2Fcreating-memorable-internet-experiences-a-trendy-css-toolkit%2F" title="Facebook" ><div class="td-social-but-icon"><i class="td-icon-facebook"></i></div><div class="td-social-but-text">Facebook</div></a><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-twitter" href="https://twitter.com/intent/tweet?text=Creating+Memorable+Internet+Experiences%3A+A+Trendy+CSS+Toolkit&url=https%3A%2F%2Fanalyticscampus.com%2Fcreating-memorable-internet-experiences-a-trendy-css-toolkit%2F&via=Analytics+Campus" title="Twitter" ><div class="td-social-but-icon"><i class="td-icon-twitter"></i></div><div class="td-social-but-text">Twitter</div></a><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-pinterest" href="https://pinterest.com/pin/create/button/?url=https://analyticscampus.com/creating-memorable-internet-experiences-a-trendy-css-toolkit/&media=https://i0.wp.com/css-tricks.com/wp-content/uploads/2026/04/psychedlic-event.webp&description=Creating+Memorable+Internet+Experiences%3A+A+Trendy+CSS+Toolkit" title="Pinterest" ><div class="td-social-but-icon"><i class="td-icon-pinterest"></i></div><div class="td-social-but-text">Pinterest</div></a><a class="td-social-sharing-button td-social-sharing-button-js td-social-network td-social-whatsapp" href="https://api.whatsapp.com/send?text=Creating+Memorable+Internet+Experiences%3A+A+Trendy+CSS+Toolkit %0A%0A https://analyticscampus.com/creating-memorable-internet-experiences-a-trendy-css-toolkit/" title="WhatsApp" ><div class="td-social-but-icon"><i class="td-icon-whatsapp"></i></div><div class="td-social-but-text">WhatsApp</div></a></div><div class="td-social-sharing-hidden"><ul class="td-pulldown-filter-list"></ul><a class="td-social-sharing-button td-social-handler td-social-expand-tabs" href="#" data-block-uid="tdi_115" title="More"> <div class="td-social-but-icon"><i class="td-icon-plus td-social-expand-tabs-icon"></i></div> </a></div></div></div><div class="wpb_wrapper td_block_separator td_block_wrap vc_separator tdi_117 td_separator_solid td_separator_center"><span style="border-color:#EBEBEB;border-width:1px;width:100%;"></span> <style scoped>.tdi_117{margin-bottom:30px!important}</style></div><div class="td_block_wrap tdb_single_next_prev tdi_118 td-animation-stack td-pb-border-top td_block_template_1" data-td-block-uid="tdi_118" > <style>.tdi_118{margin-bottom:43px!important}</style> <style>.tdb_single_next_prev{*zoom:1}.tdb_single_next_prev:before,.tdb_single_next_prev:after{display:table;content:'';line-height:0}.tdb_single_next_prev:after{clear:both}.tdb-next-post{font-family:var(--td_default_google_font_2,'Roboto',sans-serif);width:48%;float:left;transform:translateZ(0);-webkit-transform:translateZ(0);min-height:1px;line-height:1}.tdb-next-post span{display:block;font-size:12px;color:#747474;margin-bottom:7px}.tdb-next-post a{font-size:15px;color:#222;line-height:21px;-webkit-transition:color 0.2s ease;transition:color 0.2s ease}.tdb-next-post a:hover{color:var(--td_theme_color,#4db2ec)}.tdb-post-next{margin-left:2%;text-align:right}.tdb-post-prev{margin-right:2%}.tdb-post-next .td-image-container{display:inline-block}.tdi_118 .td-module-container{display:flex;flex-direction:column}.tdi_118 .tdb-post-next .td-module-container{align-items:flex-end}.tdi_118 .td-image-container{display:block;order:0}.ie10 .tdi_118 .next-prev-title,.ie11 .tdi_118 .next-prev-title{flex:auto}.tdi_118 .tdb-next-post a{color:#000000;font-family:Rubik!important;font-size:15px!important;line-height:1.4!important;font-weight:500!important}.tdi_118 .tdb-next-post:hover a{color:#dd3333}.tdi_118 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_118 .tdb-next-post span{font-family:Rubik!important;font-size:11px!important;text-transform:uppercase!important}@media (min-width:768px){.tdi_118 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_118 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_118 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_118 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_118 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_118 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_118 .tdb-next-post a{font-size:13px!important;line-height:1.2!important}@media (min-width:768px){.tdi_118 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><div class="tdb-block-inner td-fix-index"><div class="tdb-next-post tdb-next-post-bg tdb-post-prev"><span>Previous article</span><div class="td-module-container"><div class="next-prev-title"><a href="https://analyticscampus.com/native-agentic-programming-on-the-low-cost-claude-code-ollama-gemma4/">Native Agentic Programming on the Low cost: Claude Code + Ollama + Gemma4</a></div></div></div></div></div><div class="tdb-author-box td_block_wrap tdb_single_author_box tdi_119 tdb-content-vert-top td-pb-border-top td_block_template_1" data-td-block-uid="tdi_119" > <style>@media (max-width:767px){.tdi_119{justify-content:center!important;text-align:center!important}}</style> <style>.tdb-author-box .tdb-author-photo,.tdb-author-box .tdb-author-info{display:table-cell;vertical-align:top}.tdb-author-box .tdb-author-photo img{display:block}.tdb-author-box .tdb-author-counters span{display:inline-block;background-color:#222;margin:0 10px 0 0;padding:5px 10px 4px;font-family:var(--td_default_google_font_2,'Roboto',sans-serif);font-size:11px;font-weight:700;line-height:1;color:#fff}.tdb-author-box .tdb-author-name,.tdb-author-box .tdb-author-url{display:block}.tdb-author-box .tdb-author-name{margin:7px 0 8px;font-family:var(--td_default_google_font_1,'Open Sans','Open Sans Regular',sans-serif);font-size:15px;line-height:21px;font-weight:700;color:#222}.tdb-author-box .tdb-author-name:hover{color:#4db2ec}.tdb-author-box .tdb-author-url{margin-bottom:6px;font-size:11px;font-style:italic;line-height:21px;color:#444}.tdb-author-box .tdb-author-url:hover{color:#4db2ec}.tdb-author-box .tdb-author-descr{font-size:12px}.tdb-author-box .tdb-author-social{margin-top:4px}.tdb-author-box .tdb-social-item{position:relative;display:inline-block;-webkit-transition:all 0.2s;transition:all 0.2s;text-align:center;-webkit-transform:translateZ(0);transform:translateZ(0)}.tdb-author-box .tdb-social-item:last-child{margin-right:0!important}.tdb-author-box .tdb-social-item i{color:#000;-webkit-transition:all 0.2s;transition:all 0.2s}.tdb-author-box .tdb-social-item:hover i{color:#000}.tdi_119{padding:20px;border:1px solid #ededed}.tdi_119 .tdb-author-info{width:auto;padding-bottom:0;padding-left:20px}.tdi_119 .tdb-author-photo{width:120px;transform:translateZ(0);-webkit-transform:translateZ(0);pointer-events:auto}.tdi_119 .tdb-author-name{margin:5px 0 10px 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important;text-transform:capitalize!important}.tdi_119 .tdb-social-item i{font-size:15px;vertical-align:middle;line-height:15px}.tdi_119 .tdb-social-item i.td-icon-twitter,.tdi_119 .tdb-social-item i.td-icon-linkedin,.tdi_119 .tdb-social-item i.td-icon-pinterest,.tdi_119 .tdb-social-item i.td-icon-blogger,.tdi_119 .tdb-social-item i.td-icon-vimeo{font-size:12px}.tdi_119 .tdb-social-item{min-width:15px;height:15px;margin:10px 20px 10px 0}.tdi_119 .tdb-author-url{font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important}.tdi_119 .tdb-author-descr{font-family:Rubik!important;font-size:13px!important;line-height:1.4!important;font-weight:400!important}.tdi_119 .tdb-author-photo:hover:before{opacity:0}@media (min-width:1019px) and (max-width:1140px){.tdi_119{border:1px solid #ededed}}@media (min-width:768px) and (max-width:1018px){.tdi_119{padding:15px;border:1px solid #ededed}.tdi_119 .tdb-author-photo{width:80px;transform:translateZ(0);-webkit-transform:translateZ(0)}.tdi_119 .tdb-author-info{padding-bottom:0;padding-left:15px}.tdi_119 .tdb-author-name{margin:3px 0 8px 0;font-size:13px!important}.tdi_119 .tdb-author-descr{font-size:11px!important}}@media (max-width:767px){.tdi_119{border:1px solid #ededed}.tdi_119 .tdb-author-photo{display:inline-block;width:90px;transform:translateZ(0);-webkit-transform:translateZ(0)}.tdi_119 .tdb-author-info{display:inline-block;width:100%;padding-top:20px;padding-left:0}}</style><div class="tdb-block-inner td-fix-index"><a href="https://analyticscampus.com/author/analytics/" class="tdb-author-photo" title="Dr. Mike"><img alt='Dr. Mike' src='https://secure.gravatar.com/avatar/3ccf6389766267e29409e975ec4b1f73a75602fee5f62465c85c4faba7f6498e?s=96&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/3ccf6389766267e29409e975ec4b1f73a75602fee5f62465c85c4faba7f6498e?s=96&d=mm&r=g 2x' class='avatar avatar-96 photo' height='96' width='96' loading='lazy' decoding='async'/></a><div class="tdb-author-info"><a href="https://analyticscampus.com/author/analytics/" class="tdb-author-name">Dr. Mike</a><a href="https://analyticscampus.com" class="tdb-author-url">https://analyticscampus.com</a><div class="tdb-author-descr"></div><div class="tdb-author-social"></div></div></div></div><div class="td_block_wrap td_flex_block_4 tdi_120 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block" data-td-block-uid="tdi_120" > <style>.td_block_template_8.widget>ul>li{margin-left:0!important}.td_block_template_8 .td-block-title{font-size:20px;font-weight:800;margin-top:0;margin-bottom:18px;line-height:29px;position:relative;overflow:hidden;text-align:left}.td_block_template_8 .td-block-title>*{position:relative;padding-right:20px;color:var(--td_text_header_color,#000)}.td_block_template_8 .td-block-title>*:before,.td_block_template_8 .td-block-title>*:after{content:'';display:block;height:4px;position:absolute;top:50%;margin-top:-2px;width:2000px;background-color:#f5f5f5}.td_block_template_8 .td-block-title>*:before{left:100%}.td_block_template_8 .td-block-title>*:after{right:100%}@media (max-width:767px){.td_block_template_8 .td-related-title a{font-size:15px}}.td_block_template_8 .td-related-title a:before{display:none}.td_block_template_8 .td-related-title a:first-child:after{display:none}.td_block_template_8 .td-related-title a:last-child:after{left:100%;right:auto}.td_block_template_8 .td-related-title .td-cur-simple-item{color:var(--td_theme_color,#4db2ec)}.tdi_120 .td-block-title>*:before,.tdi_120 .td-block-title>*:after{background-color:#85c442!important}@media (max-width:767px){.tdi_120{margin-bottom:40px!important}}</style> <style>.tdi_120 .td_module_wrap{padding-left:2.5px;padding-right:2.5px}.tdi_120 .td_block_inner{margin-left:-2.5px;margin-right:-2.5px}.tdi_120 .td_module_flex_1{padding-bottom:0px;margin-bottom:0px}.tdi_120 .td_module_flex_1 .td-module-container:before{bottom:-0px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_120 .td_module_flex_4{padding-bottom:13px;margin-bottom:13px}.tdi_120 .td_module_flex_4 .td-module-container:before{bottom:-13px;border-width:0 0 1px 0;border-style:none;border-color:#eaeaea;border-color:#eaeaea}.tdi_120 .td_module_wrap:last-child{margin-bottom:0!important;padding-bottom:0!important}.tdi_120 .td_module_wrap:last-child .td-module-container:before{display:none}.tdi_120 .td_module_flex_1 .td-module-container{border-color:#eaeaea}.tdi_120 .td_module_flex_4 .td-module-container{border-color:#eaeaea}.tdi_120 .td_module_flex_1 .entry-thumb{background-position:center 50%}.tdi_120 .td_module_flex_4 .entry-thumb{background-position:center 50%}.tdi_120 .td_module_flex_4 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.tdi_120 .td_module_flex_1 .td-image-wrap{padding-bottom:120%}.ie10 .tdi_120 .td_module_flex_1 .td-image-container,.ie11 .tdi_120 .td_module_flex_1 .td-image-container{flex:0 0 auto}.ie10 .tdi_120 .td_module_flex_4 .td-module-meta-info,.ie11 .tdi_120 .td_module_flex_4 .td-module-meta-info{flex:1}body .tdi_120 .td_module_flex_1 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}body .tdi_120 .td_module_flex_4 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_120 .td_module_flex_4 .td-video-play-ico{width:20px;height:20px;font-size:20px}.tdi_120 .td_module_flex_1 .td-video-play-ico{top:50%;left:50%;transform:translate(-50%,-50%)}.tdi_120 .td_module_flex_1 .td-post-vid-time{display:block}.tdi_120 .td_module_flex_4 .td-post-vid-time{display:block}.tdi_120 .td_module_flex_1 .td-module-meta-info{position:absolute;bottom:0;left:0;width:100%;text-align:center;padding:15px 10px}.tdi_120 .td_module_flex_1 .td-category-pos-image .td-post-category:not(.td-post-extra-category){top:auto;bottom:0;left:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%)}.tdi_120 .td_module_flex_1 .td-image-container{margin-left:auto;margin-right:auto}.tdi_120.td-h-effect-up-shadow .td_module_flex_1:hover .td-category-pos-image .td-post-category{transform:translate(-50%,-2px);-webkit-transform:translate(-50%,-2px)}.tdi_120 .td_module_flex_1 .entry-title{margin:10px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_120 .td_module_flex_1 .td-audio-player{font-size:13px;opacity:1;visibility:visible;height:auto}.tdi_120 .td_module_flex_4 .td-audio-player{font-size:12px;opacity:1;visibility:visible;height:auto}.tdi_120 .td_module_flex_1 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#ffffff;font-family:Rubik!important;font-size:11px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_120 .td_module_flex_1 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_120 .td_module_flex_4 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_120 .td_module_flex_1 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_120 .td_module_flex_4 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_120 .td_module_flex_1 .td-excerpt{display:none}.tdi_120 .td_module_flex_4 .td-excerpt{display:none}.tdi_120 .td_module_flex_1 .td-author-date{display:none}.tdi_120 .td_module_flex_4 .td-author-date{display:none}.tdi_120 .td_module_flex_1 .td-post-author-name{display:none}.tdi_120 .td_module_flex_4 .td-post-author-name{display:none}.tdi_120 .td_module_flex_1 .td-post-date,.tdi_120 .td_module_flex_1 .td-post-author-name span{display:none}.tdi_120 .td_module_flex_4 .td-post-date,.tdi_120 .td_module_flex_4 .td-post-author-name span{display:none}.tdi_120 .td_module_flex_1 .entry-review-stars{display:none}.tdi_120 .td_module_flex_1 .td-icon-star,.tdi_120 .td_module_flex_1 .td-icon-star-empty,.tdi_120 .td_module_flex_1 .td-icon-star-half{font-size:15px}.tdi_120 .td_module_flex_4 .entry-review-stars{display:none}.tdi_120 .td_module_flex_4 .td-icon-star,.tdi_120 .td_module_flex_4 .td-icon-star-empty,.tdi_120 .td_module_flex_4 .td-icon-star-half{font-size:15px}.tdi_120 .td_module_flex_1 .td-module-comments{display:none}.tdi_120 .td_module_flex_4 .td-module-comments{display:none}.tdi_120 .td_module_flex_1 .td-module-thumb a:after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:-webkit-linear-gradient(0deg,rgba(0,0,0,0.7),rgba(0,0,0,0.3) 35%,rgba(0,0,0,0) 50%,rgba(0,0,0,0));background:linear-gradient(0deg,rgba(0,0,0,0.7),rgba(0,0,0,0.3) 35%,rgba(0,0,0,0) 50%,rgba(0,0,0,0))}.tdi_120 .td_module_flex_1 .td-module-title a{color:#ffffff}.tdi_120 .td_module_flex_1 .td-post-category:hover{background-color:rgba(255,255,255,0)!important}.tdi_120 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_120 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_120.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_120 .td-load-more-wrap a:hover{background-color:#85c442!important;border-color:#85c442!important;border-color:#85c442!important}.tdi_120 .td-block-title a,.tdi_120 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}html:not([class*='ie']) .tdi_120 .entry-thumb:after{background:rgba(112,204,63,0.3)}@media (min-width:767px){.tdi_120 .td_module_wrap{width:33.33333333%;float:left}.rtl .tdi_120 .td_module_wrap{float:right}}@media (min-width:767px){.tdi_120 .td_module_wrap:nth-child(3n+1){clear:both}}@media (min-width:767px){.tdi_120 .td_module_wrap:nth-last-child(-n+3){margin-bottom:0!important;padding-bottom:0!important}.tdi_120 .td_module_wrap:nth-last-child(-n+3) .td-module-container:before{display:none}}@media (min-width:1141px){html:not([class*='ie']) .tdi_120 .entry-thumb:after{content:'';width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;transition:opacity 1s ease;-webkit-transition:opacity 1s ease;mix-blend-mode:color}html:not([class*='ie']) .tdi_120 .td-module-container:hover .entry-thumb:after{opacity:1}}@media (min-width:1019px) and (max-width:1140px){.tdi_120 .td_module_wrap{padding-left:2px;padding-right:2px}.tdi_120 .td_block_inner{margin-left:-2px;margin-right:-2px}.tdi_120 .td_module_flex_1 .td-module-meta-info{padding:12px 8px}.tdi_120 .td_module_flex_1 .entry-title{margin:8px 0 0 0}.tdi_120 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_120 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}}@media (min-width:768px) and (max-width:1018px){.tdi_120 .td_module_wrap{padding-left:1.5px;padding-right:1.5px}.tdi_120 .td_block_inner{margin-left:-1.5px;margin-right:-1.5px}.tdi_120 .td_module_flex_1 .td-module-meta-info{padding:10px 5px}.tdi_120 .td_module_flex_1 .entry-title{margin:6px 0 0 0;font-size:11px!important}.tdi_120 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_120 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_120 .td-block-title a,.tdi_120 .td-block-title span{font-size:15px!important}}@media (max-width:767px){.tdi_120 .td_module_wrap{padding-left:0px;padding-right:0px}.tdi_120 .td_block_inner{margin-left:-0px;margin-right:-0px}.tdi_120 .td_module_flex_1{padding-bottom:1.5px;margin-bottom:1.5px}.tdi_120 .td_module_flex_1 .td-module-container:before{bottom:-1.5px}.tdi_120 .td_module_flex_1 .td-image-wrap{padding-bottom:110%}.ie10 .tdi_120 .td_module_flex_1 .td-image-container,.ie11 .tdi_120 .td_module_flex_1 .td-image-container{flex:0 0 auto}.tdi_120 .td_module_flex_1 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_120 .td_module_flex_4 a{transition:all 0.1s ease;-webkit-transition:all 0.1s ease;box-shadow:inset 0 0 0 0 #000}.tdi_120 .td_module_flex_1 .entry-title{font-size:17px!important}.tdi_120 .td_module_flex_1 .td-post-category{font-size:13px!important}}</style><script>var block_tdi_120 = new tdBlock(); block_tdi_120.id = "tdi_120"; block_tdi_120.atts = '{"image_align":"center","meta_info_align":"bottom","color_overlay":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiJyZ2JhKDAsMCwwLDApIiwiY29sb3IyIjoicmdiYSgwLDAsMCwwLjcpIiwibWl4ZWRDb2xvcnMiOlt7ImNvbG9yIjoicmdiYSgwLDAsMCwwLjMpIiwicGVyY2VudGFnZSI6MzV9LHsiY29sb3IiOiJyZ2JhKDAsMCwwLDApIiwicGVyY2VudGFnZSI6NTB9XSwiY3NzIjoiYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQoMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwLjMpIDM1JSxyZ2JhKDAsMCwwLDApIDUwJSxyZ2JhKDAsMCwwLDApKTtiYWNrZ3JvdW5kOiBsaW5lYXItZ3JhZGllbnQoMGRlZyxyZ2JhKDAsMCwwLDAuNykscmdiYSgwLDAsMCwwLjMpIDM1JSxyZ2JhKDAsMCwwLDApIDUwJSxyZ2JhKDAsMCwwLDApKTsiLCJjc3NQYXJhbXMiOiIwZGVnLHJnYmEoMCwwLDAsMC43KSxyZ2JhKDAsMCwwLDAuMykgMzUlLHJnYmEoMCwwLDAsMCkgNTAlLHJnYmEoMCwwLDAsMCkifQ==","image_margin":"0","modules_on_row":"33.33333333%","columns":"33.33333333%","meta_info_align1":"image","limit":"3","modules_category":"above","show_author2":"none","show_date2":"none","show_review2":"none","show_com2":"none","show_excerpt2":"none","show_excerpt1":"none","show_com1":"none","show_review1":"none","show_date1":"none","show_author1":"none","meta_info_horiz1":"content-horiz-center","modules_space1":"eyJhbGwiOiIwIiwicGhvbmUiOiIzIn0=","columns_gap":"eyJhbGwiOiI1IiwicG9ydHJhaXQiOiIzIiwibGFuZHNjYXBlIjoiNCIsInBob25lIjoiMCJ9","image_height1":"eyJhbGwiOiIxMjAiLCJwaG9uZSI6IjExMCJ9","meta_padding1":"eyJhbGwiOiIxNXB4IDEwcHgiLCJwb3J0cmFpdCI6IjEwcHggNXB4IiwibGFuZHNjYXBlIjoiMTJweCA4cHgifQ==","art_title1":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI2cHggMCAwIDAiLCJsYW5kc2NhcGUiOiI4cHggMCAwIDAifQ==","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","title_txt":"#ffffff","all_underline_color1":"","f_title1_font_family":"712","f_title1_font_line_height":"1.2","f_title1_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEiLCJwaG9uZSI6IjE3In0=","f_title1_font_weight":"500","f_title1_font_transform":"","f_cat1_font_transform":"uppercase","f_cat1_font_size":"eyJhbGwiOiIxMSIsInBob25lIjoiMTMifQ==","f_cat1_font_weight":"500","f_cat1_font_family":"712","modules_category_padding1":"0","category_id":"","ajax_pagination":"next_prev","f_more_font_family":"","f_more_font_transform":"","f_more_font_weight":"","sort":"","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3NjgsInBob25lIjp7Im1hcmdpbi1ib3R0b20iOiI0MCIsImRpc3BsYXkiOiIifSwicGhvbmVfbWF4X3dpZHRoIjo3Njd9","custom_title":"Related Articles","block_template_id":"td_block_template_8","image_size":"","cat_txt":"#ffffff","border_color":"#85c442","f_header_font_family":"712","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_transform":"uppercase","f_header_font_weight":"500","mix_type_h":"color","mix_color_h":"rgba(112,204,63,0.3)","pag_h_bg":"#85c442","pag_h_border":"#85c442","block_type":"td_flex_block_4","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","mc4_tl":"","mc4_title_tag":"","mc4_el":"","post_ids":"-24548","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_only":"","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_ajax_filter_type":"","td_ajax_filter_ids":"","td_filter_default_txt":"All","td_ajax_preloading":"","h_effect":"","modules_border_size1":"","modules_border_style1":"","modules_border_color1":"#eaeaea","modules_divider1":"","modules_divider_color1":"#eaeaea","image_alignment1":"50","image_radius1":"","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon1":"","video_icon_pos1":"center","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","meta_width1":"","meta_margin1":"","meta_info_border_radius1":"","modules_category_margin1":"","modules_cat_border1":"","modules_category_radius1":"0","show_cat1":"inline-block","modules_extra_cat1":"","author_photo":"","author_photo_size1":"","author_photo_space1":"","author_photo_radius1":"","review_space1":"","review_size1":"2.5","review_distance1":"","art_excerpt1":"","excerpt_middle":"","show_audio1":"block","hide_audio":"","art_audio1":"","art_audio_size1":"1.5","m_padding2":"","modules_space2":"26","modules_border_size2":"","modules_border_style2":"","modules_border_color2":"#eaeaea","modules_divider2":"","modules_divider_color2":"#eaeaea","image_size3":"","image_alignment2":"50","image_width2":"","image_height2":"","image_floated2":"float_left","image_radius2":"","hide_image3":"","show_favourites2":"","fav_size2":"2","fav_space2":"","fav_ico_color2":"","fav_ico_color_h2":"","fav_bg2":"","fav_bg_h2":"","fav_shadow2_shadow_header":"","fav_shadow2_shadow_title":"Shadow","fav_shadow2_shadow_size":"","fav_shadow2_shadow_offset_horizontal":"","fav_shadow2_shadow_offset_vertical":"","fav_shadow2_shadow_spread":"","fav_shadow2_shadow_color":"","video_icon2":"","video_popup3":"yes","video_rec3":"","video_rec_title3":"","video_rec_color3":"","autoplay_vid3":"yes","show_vid_t3":"block","vid_t_margin3":"","vid_t_padding3":"","meta_info_horiz2":"content-horiz-left","meta_width2":"","meta_margin2":"","meta_padding2":"","meta_info_border_radius2":"","art_title2":"","modules_category3":"","modules_category_margin2":"","modules_category_padding2":"","modules_cat_border2":"","modules_category_radius2":"0","show_cat2":"inline-block","modules_extra_cat2":"","author_photo3":"","author_photo_size2":"","author_photo_space2":"","author_photo_radius2":"","review_space2":"","review_size2":"2.5","review_distance2":"","art_excerpt2":"","excerpt_middle3":"","show_audio2":"block","hide_audio3":"","art_audio2":"","art_audio_size2":"1","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_spacing":"","f_more_":"","f_title1_font_header":"","f_title1_font_title":"Article title 1","f_title1_font_settings":"","f_title1_font_style":"","f_title1_font_spacing":"","f_title1_":"","f_cat1_font_title":"Article category tag 1","f_cat1_font_settings":"","f_cat1_font_line_height":"","f_cat1_font_style":"","f_cat1_font_spacing":"","f_cat1_":"","f_meta1_font_title":"Article meta info 1","f_meta1_font_settings":"","f_meta1_font_family":"","f_meta1_font_size":"","f_meta1_font_line_height":"","f_meta1_font_style":"","f_meta1_font_weight":"","f_meta1_font_transform":"","f_meta1_font_spacing":"","f_meta1_":"","f_ex1_font_title":"Article excerpt 1","f_ex1_font_settings":"","f_ex1_font_family":"","f_ex1_font_size":"","f_ex1_font_line_height":"","f_ex1_font_style":"","f_ex1_font_weight":"","f_ex1_font_transform":"","f_ex1_font_spacing":"","f_ex1_":"","f_title2_font_title":"Article title 2","f_title2_font_settings":"","f_title2_font_family":"","f_title2_font_size":"","f_title2_font_line_height":"","f_title2_font_style":"","f_title2_font_weight":"","f_title2_font_transform":"","f_title2_font_spacing":"","f_title2_":"","f_cat2_font_title":"Article category tag 2","f_cat2_font_settings":"","f_cat2_font_family":"","f_cat2_font_size":"","f_cat2_font_line_height":"","f_cat2_font_style":"","f_cat2_font_weight":"","f_cat2_font_transform":"","f_cat2_font_spacing":"","f_cat2_":"","f_meta2_font_title":"Article meta info 2","f_meta2_font_settings":"","f_meta2_font_family":"","f_meta2_font_size":"","f_meta2_font_line_height":"","f_meta2_font_style":"","f_meta2_font_weight":"","f_meta2_font_transform":"","f_meta2_font_spacing":"","f_meta2_":"","f_ex2_font_title":"Article excerpt 2","f_ex2_font_settings":"","f_ex2_font_family":"","f_ex2_font_size":"","f_ex2_font_line_height":"","f_ex2_font_style":"","f_ex2_font_weight":"","f_ex2_font_transform":"","f_ex2_font_spacing":"","f_ex2_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","meta_bg":"","title_txt_hover":"","all_underline_height1":"","cat_style":"","cat_txt_hover":"","cat_border1":"","cat_border_hover1":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","meta_bg2":"","title_txt2":"","title_txt_hover2":"","all_underline_height2":"","all_underline_color2":"#000","cat_bg2":"","cat_bg_hover2":"","cat_txt2":"","cat_txt_hover2":"","cat_border2":"","cat_border_hover2":"","author_txt2":"","author_txt_hover2":"","date_txt2":"","ex_txt2":"","com_bg2":"","com_txt2":"","rev_txt2":"","audio_btn_color2":"","audio_time_color2":"","audio_bar_color2":"","audio_bar_curr_color2":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","btn_title":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":2,"header_color":"","color_preset":"","border_top":"","class":"tdi_120","tdc_css_class":"tdi_120","tdc_css_class_style":"tdi_120_rand_style"}'; block_tdi_120.td_column_number = "2"; block_tdi_120.block_type = "td_flex_block_4"; block_tdi_120.post_count = "3"; block_tdi_120.found_posts = "5939"; block_tdi_120.header_color = ""; block_tdi_120.ajax_pagination_infinite_stop = ""; block_tdi_120.max_num_pages = "1980"; tdBlocksArray.push(block_tdi_120); </script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Related Articles</span></h4></div><div id=tdi_120 class="td_block_inner td-mc1-wrap"> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/native-agentic-programming-on-the-low-cost-claude-code-ollama-gemma4/" rel="bookmark" class="td-image-wrap " title="Native Agentic Programming on the Low cost: Claude Code + Ollama + Gemma4" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.kdnuggets.com/wp-content/uploads/KDN-Shittu-Local-Agentic-Programming-on-the-Cheap.png" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/machine-learning/" class="td-post-category" >Machine Learning</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/native-agentic-programming-on-the-low-cost-claude-code-ollama-gemma4/" rel="bookmark" title="Native Agentic Programming on the Low cost: Claude Code + Ollama + Gemma4">Native Agentic Programming on the Low cost: Claude Code + Ollama + Gemma4</a></h3> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/7-prime-autonomous-ai-pentesting-platforms-in-2026/" rel="bookmark" class="td-image-wrap " title="7 Prime Autonomous AI Pentesting Platforms in 2026" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://bigdataanalyticsnews.com/wp-content/uploads/2026/06/ai-pentesting-tools.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/artificial-intelligence/" class="td-post-category" >Artificial Intelligence</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/7-prime-autonomous-ai-pentesting-platforms-in-2026/" rel="bookmark" title="7 Prime Autonomous AI Pentesting Platforms in 2026">7 Prime Autonomous AI Pentesting Platforms in 2026</a></h3> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/a-complete-ebook-about-that-one-matt-bors-comedian/" rel="bookmark" class="td-image-wrap " title="A complete ebook about That One Matt Bors Comedian" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://boingboing.net/wp-content/uploads/2026/06/bors.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/technology/" class="td-post-category" >Technology</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/a-complete-ebook-about-that-one-matt-bors-comedian/" rel="bookmark" title="A complete ebook about That One Matt Bors Comedian">A complete ebook about That One Matt Bors Comedian</a></h3> </div> </div> </div> </div><div class="td-next-prev-wrap"><a href="#" class="td-ajax-prev-page ajax-page-disabled" aria-label="prev-page" id="prev-page-tdi_120" data-td_block_id="tdi_120"><i class="td-next-prev-icon td-icon-font td-icon-menu-left"></i></a><a href="#" class="td-ajax-next-page" aria-label="next-page" id="next-page-tdi_120" data-td_block_id="tdi_120"><i class="td-next-prev-icon td-icon-font td-icon-menu-right"></i></a></div></div> <script> var tdb_login_sing_in_shortcode="on"; </script> <div class="td_block_wrap tdb_single_comments tdi_121 tdb-comm-layout1 td-pb-border-top td_block_template_8" data-td-block-uid="tdi_121" > <style> .tdi_121 .td-block-title > *:before, .tdi_121 .td-block-title > *:after { background-color: #008d7f !important; } </style> <style>.tdb_single_comments input[type=text]{min-height:34px;height:auto}.tdb_single_comments .comments,.tdb_single_comments .comment-respond:last-child,.tdb_single_comments .form-submit{margin-bottom:0}.is-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.tdb-comm-layout3 form,.tdb-comm-layout5 form{display:flex;flex-wrap:wrap}.tdb-comm-layout3 .td-form-comment,.tdb-comm-layout5 .td-form-comment,.tdb-comm-layout3 .form-submit,.tdb-comm-layout5 .form-submit{flex:0 0 100%;order:1}.tdb-comm-layout3 .td-form-author,.tdb-comm-layout3 .td-form-email,.tdb-comm-layout3 .td-form-url{flex:0 0 32%}.tdb-comm-layout5 .td-form-author,.tdb-comm-layout5 .td-form-email{flex:0 0 49%}.tdb-comm-layout5 .td-form-url{flex:0 0 100%}.tdb-comm-leave_reply_top .comments{display:flex;flex-direction:column}.tdb-comm-leave_reply_top .td-comments-title{order:0;margin-bottom:14px}.tdb-comm-leave_reply_top .comment-respond .form-submit{order:1;margin-bottom:21px}.tdb-comm-leave_reply_top .comment-list{order:2}.tdb-comm-leave_reply_top .comment-pagination{order:3}.tdi_121 cite a:hover{color:#008d7f}.tdi_121 .comment-link{display:inline-block}.tdi_121 .comment-reply-link:hover,.tdi_121 #cancel-comment-reply-link:hover,.tdi_121 .logged-in-as a:hover{color:#000000}.tdi_121 .comment{border-bottom-style:dashed}.tdi_121 .comment .children{border-top-style:dashed}.tdi_121 .td-comments-title a,.tdi_121 .td-comments-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_121 cite{font-family:Rubik!important;font-size:15px!important;font-weight:500!important;text-transform:capitalize!important}.tdi_121 .comment-link,.tdi_121 .comment-edit-link{font-family:Rubik!important;font-size:11px!important;font-weight:400!important}.tdi_121 .comment-content p{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_121 .comment-reply-link{font-family:Rubik!important;font-weight:400!important;text-transform:uppercase!important}.tdi_121 .comment-reply-title{font-family:Rubik!important;font-size:15px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_121 input[type=text],.tdi_121 textarea{font-family:Rubik!important;font-size:13px!important;font-weight:400!important}.tdi_121 .comment-form .submit{font-family:Rubik!important;font-size:13px!important;font-weight:400!important;text-transform:uppercase!important}.tdi_121 .comment-form-cookies-consent label,.tdi_121 .logged-in-as,.tdi_121 .logged-in-as a,.tdi_121 .td-closed-comments{font-family:Rubik!important;font-size:13px!important;line-height:1.2!important;font-weight:400!important}@media (min-width:767px){.tdb-comm-layout2 form,.tdb-comm-layout4 form{margin:0 -10px}.tdb-comm-layout2 .logged-in-as,.tdb-comm-layout4 .logged-in-as,.tdb-comm-layout2 .comment-form-input-wrap,.tdb-comm-layout4 .comment-form-input-wrap,.tdb-comm-layout2 .form-submit,.tdb-comm-layout4 .form-submit,.tdb-comm-layout2 .comment-respond p,.tdb-comm-layout4 .comment-respond p{padding:0 10px}.tdb-comm-layout2 .td-form-author,.tdb-comm-layout2 .td-form-email{float:left;width:33.3333%}.tdb-comm-layout2 .td-form-url{width:33.3333%}.tdb-comm-layout2 .td-form-url{float:left}.tdb-comm-layout4 .td-form-author,.tdb-comm-layout4 .td-form-email{float:left;width:50%}.tdb-comm-layout3 .td-form-author,.tdb-comm-layout5 .td-form-author,.tdb-comm-layout3 .td-form-email{margin-right:2%}}@media (max-width:767px){.tdb-comm-layout3 .td-form-author,.tdb-comm-layout3 .td-form-email,.tdb-comm-layout3 .td-form-url,.tdb-comm-layout5 .td-form-author,.tdb-comm-layout5 .td-form-email{flex:0 0 100%}}@media (min-width:768px) and (max-width:1018px){.tdi_121 .td-comments-title a,.tdi_121 .td-comments-title span{font-size:15px!important}.tdi_121 cite{font-size:13px!important}.tdi_121 .comment-reply-title{font-size:13px!important}}</style><div class="tdb-block-inner td-fix-index"><div class="comments" id="comments"></div></div></div></div></div><div class="vc_column tdi_123 wpb_column vc_column_container tdc-column td-pb-span4 td-is-sticky"> <style scoped>.tdi_123{vertical-align:baseline}.tdi_123>.wpb_wrapper,.tdi_123>.wpb_wrapper>.tdc-elements{display:block}.tdi_123>.wpb_wrapper>.tdc-elements{width:100%}.tdi_123>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_123>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" data-sticky-enabled-on="W3RydWUsdHJ1ZSx0cnVlLHRydWVd" data-sticky-offset="20" data-sticky-is-width-auto="W2ZhbHNlLGZhbHNlLGZhbHNlLGZhbHNlXQ=="><div class="td_block_wrap td_flex_block_1 tdi_124 td_with_ajax_pagination td-pb-border-top td_block_template_8 td_flex_block" data-td-block-uid="tdi_124" > <style>.tdi_124 .td-block-title>*:before,.tdi_124 .td-block-title>*:after{background-color:#008d7f!important}@media (max-width:767px){.tdi_124{margin-bottom:40px!important}}</style> <style>.tdi_124 .td-image-wrap{padding-bottom:100%}.tdi_124 .entry-thumb{background-position:center 50%}.tdi_124 .td-image-container{flex:0 0 30%;width:30%;display:block;order:0}.ie10 .tdi_124 .td-image-container,.ie11 .tdi_124 .td-image-container{flex:0 0 auto}.tdi_124 .td-module-container{flex-direction:row;border-color:#eaeaea!important}.ie10 .tdi_124 .td-module-meta-info,.ie11 .tdi_124 .td-module-meta-info{flex:1}body .tdi_124 .td-favorite{font-size:36px;box-shadow:1px 1px 4px 0px rgba(0,0,0,0.2)}.tdi_124 .td-module-meta-info{padding:0 0 0 15px;display:flex;flex-direction:column;justify-content:center;border-color:#eaeaea}.tdi_124 .td-category-pos-above .td-post-category{align-self:flex-start}.tdi_124 .td_module_wrap{padding-left:20px;padding-right:20px;padding-bottom:12px;margin-bottom:12px}.tdi_124 .td_block_inner{margin-left:-20px;margin-right:-20px}.tdi_124 .td-module-container:before{bottom:-12px;border-color:#eaeaea}.tdi_124 .entry-thumb,.tdi_124 .td-image-wrap:before,.tdi_124 .td-image-wrap:after,.tdi_124 .entry-thumb:before,.tdi_124 .entry-thumb:after{border-radius:100%}.tdi_124 .td-post-vid-time{display:block}.tdi_124 .td-post-category{padding:0px;background-color:rgba(255,255,255,0);color:#000000;font-family:Rubik!important;font-size:11px!important;line-height:1!important;font-weight:400!important;text-transform:uppercase!important}.tdi_124 .td-post-category:not(.td-post-extra-category){display:inline-block}.tdi_124 .td-author-photo .avatar{width:20px;height:20px;margin-right:6px;border-radius:50%}.tdi_124 .td-excerpt{display:none;margin:0px;column-count:1;column-gap:48px}.tdi_124 .td-audio-player{opacity:1;visibility:visible;height:auto;font-size:13px}.tdi_124 .td-read-more{display:none}.tdi_124 .td-author-date{display:none}.tdi_124 .td-post-author-name{display:none}.tdi_124 .td-post-date,.tdi_124 .td-post-author-name span{display:none}.tdi_124 .entry-review-stars{display:none}.tdi_124 .td-icon-star,.tdi_124 .td-icon-star-empty,.tdi_124 .td-icon-star-half{font-size:15px}.tdi_124 .td-module-comments{display:none}.tdi_124 .td_module_wrap:nth-last-child(1){margin-bottom:0;padding-bottom:0}.tdi_124 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none}.tdi_124 .td-post-category:hover{background-color:rgba(255,255,255,0)!important;color:#008d7f}.tdi_124 .td-module-title a{color:#000000;box-shadow:inset 0 0 0 0 #000}.tdi_124 .td_module_wrap:hover .td-module-title a{color:#008d7f!important}.tdi_124.td_with_ajax_pagination .td-next-prev-wrap a:hover,.tdi_124 .td-load-more-wrap a:hover{background-color:#008d7f!important;border-color:#008d7f!important;border-color:#008d7f!important}.tdi_124 .entry-title{margin:8px 0 0 0;font-family:Rubik!important;font-size:15px!important;line-height:1.2!important;font-weight:500!important}.tdi_124 .td-block-title a,.tdi_124 .td-block-title span{font-family:Rubik!important;font-size:17px!important;font-weight:500!important;text-transform:uppercase!important}.tdi_124 .td-editor-date,.tdi_124 .td-editor-date .td-post-author-name a,.tdi_124 .td-editor-date .entry-date,.tdi_124 .td-module-comments a{font-family:Rubik!important}html:not([class*='ie']) .tdi_124 .td-module-container:hover .entry-thumb:before{opacity:0}@media (min-width:768px){.tdi_124 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}@media (min-width:1019px) and (max-width:1140px){.tdi_124 .td_module_wrap{padding-bottom:10px;margin-bottom:10px;padding-bottom:10px!important;margin-bottom:10px!important}.tdi_124 .td-module-container:before{bottom:-10px}.tdi_124 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_124 .td_module_wrap .td-module-container:before{display:block!important}.tdi_124 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_124 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_124 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (min-width:768px) and (max-width:1018px){.tdi_124 .td-module-meta-info{padding:0 0 0 10px}.tdi_124 .td_module_wrap{padding-bottom:7.5px;margin-bottom:7.5px;padding-bottom:7.5px!important;margin-bottom:7.5px!important}.tdi_124 .td-module-container:before{bottom:-7.5px}.tdi_124 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_124 .td_module_wrap .td-module-container:before{display:block!important}.tdi_124 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_124 .td-module-title a{box-shadow:inset 0 0 0 0 #000}.tdi_124 .entry-title{margin:5px 0 0 0;font-size:11px!important}.tdi_124 .td-block-title a,.tdi_124 .td-block-title span{font-size:15px!important}@media (min-width:768px){.tdi_124 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}@media (max-width:767px){.tdi_124 .td_module_wrap{width:100%;float:left;padding-bottom:12px;margin-bottom:12px;padding-bottom:12px!important;margin-bottom:12px!important}.rtl .tdi_124 .td_module_wrap{float:right}.tdi_124 .td-module-container:before{bottom:-12px}.tdi_124 .td_module_wrap:nth-last-child(1){margin-bottom:0!important;padding-bottom:0!important}.tdi_124 .td_module_wrap .td-module-container:before{display:block!important}.tdi_124 .td_module_wrap:nth-last-child(1) .td-module-container:before{display:none!important}.tdi_124 .td-module-title a{box-shadow:inset 0 0 0 0 #000}@media (min-width:768px){.tdi_124 .td-module-title a{transition:all 0.2s ease;-webkit-transition:all 0.2s ease}}}</style><script>var block_tdi_124 = new tdBlock(); block_tdi_124.id = "tdi_124"; block_tdi_124.atts = '{"modules_on_row":"eyJwaG9uZSI6IjEwMCUifQ==","image_floated":"float_left","image_width":"30","image_height":"100","show_btn":"none","show_excerpt":"none","modules_category":"above","show_date":"none","show_review":"none","show_com":"none","show_author":"none","meta_padding":"eyJhbGwiOiIwIDAgMCAxNXB4IiwicG9ydHJhaXQiOiIwIDAgMCAxMHB4In0=","art_title":"eyJhbGwiOiI4cHggMCAwIDAiLCJwb3J0cmFpdCI6IjVweCAwIDAgMCJ9","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_weight":"500","f_title_font_line_height":"1.2","title_txt":"#000000","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","f_cat_font_family":"712","f_cat_font_transform":"uppercase","f_cat_font_weight":"400","f_cat_font_size":"11","modules_category_padding":"0","all_modules_space":"eyJhbGwiOiIyNCIsInBvcnRyYWl0IjoiMTUiLCJsYW5kc2NhcGUiOiIyMCJ9","category_id":"","ajax_pagination":"load_more","sort":"","title_txt_hover":"#008d7f","tdc_css":"eyJwaG9uZSI6eyJtYXJnaW4tYm90dG9tIjoiNDAiLCJkaXNwbGF5IjoiIn0sInBob25lX21heF93aWR0aCI6NzY3LCJhbGwiOnsiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9","cat_txt":"#000000","cat_txt_hover":"#008d7f","f_more_font_weight":"","f_more_font_transform":"","f_more_font_family":"","image_size":"td_150x0","f_meta_font_family":"712","custom_title":"Latest Articles","block_template_id":"td_block_template_8","border_color":"#008d7f","art_excerpt":"0","meta_info_align":"center","f_cat_font_line_height":"1","pag_h_bg":"#008d7f","image_radius":"100%","td_ajax_filter_type":"","f_header_font_size":"eyJhbGwiOiIxNyIsInBvcnRyYWl0IjoiMTUifQ==","f_header_font_weight":"500","f_header_font_transform":"uppercase","f_header_font_family":"712","pag_h_border":"#008d7f","block_type":"td_flex_block_1","separator":"","custom_url":"","title_tag":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","post_ids":"-24548","taxonomies":"","category_ids":"","in_all_terms":"","tag_slug":"","autors_id":"","installed_post_types":"","include_cf_posts":"","exclude_cf_posts":"","popular_by_date":"","linked_posts":"","favourite_only":"","limit":"5","offset":"","open_in_new_window":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_source":"","el_class":"","td_query_cache":"","td_query_cache_expiration":"","td_ajax_filter_ids":"","td_filter_default_txt":"All","td_ajax_preloading":"","container_width":"","modules_gap":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_border_radius":"","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","hide_image":"","show_favourites":"","fav_size":"2","fav_space":"","fav_ico_color":"","fav_ico_color_h":"","fav_bg":"","fav_bg_h":"","fav_shadow_shadow_header":"","fav_shadow_shadow_title":"Shadow","fav_shadow_shadow_size":"","fav_shadow_shadow_offset_horizontal":"","fav_shadow_shadow_offset_vertical":"","fav_shadow_shadow_spread":"","fav_shadow_shadow_color":"","video_icon":"","video_popup":"yes","video_rec":"","spot_header":"","video_rec_title":"","video_rec_color":"","video_rec_disable":"","autoplay_vid":"yes","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","video_title_color":"","video_title_color_h":"","video_bg":"","video_overlay":"","vid_t_color":"","vid_t_bg_color":"","f_vid_title_font_header":"","f_vid_title_font_title":"Video pop-up article title","f_vid_title_font_settings":"","f_vid_title_font_family":"","f_vid_title_font_size":"","f_vid_title_font_line_height":"","f_vid_title_font_style":"","f_vid_title_font_weight":"","f_vid_title_font_transform":"","f_vid_title_font_spacing":"","f_vid_title_":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","meta_info_horiz":"layout-default","meta_width":"","meta_margin":"","meta_space":"","art_btn":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","meta_info_border_radius":"","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","review_space":"","review_size":"2.5","review_distance":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","excerpt_inline":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1.5","btn_title":"","btn_margin":"","btn_padding":"","btn_border_width":"","btn_radius":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","pag_icons_size":"","f_header_font_header":"","f_header_font_title":"Block header","f_header_font_settings":"","f_header_font_line_height":"","f_header_font_style":"","f_header_font_spacing":"","f_header_":"","f_ajax_font_title":"Ajax categories","f_ajax_font_settings":"","f_ajax_font_family":"","f_ajax_font_size":"","f_ajax_font_line_height":"","f_ajax_font_style":"","f_ajax_font_weight":"","f_ajax_font_transform":"","f_ajax_font_spacing":"","f_ajax_":"","f_more_font_title":"Load more button","f_more_font_settings":"","f_more_font_size":"","f_more_font_line_height":"","f_more_font_style":"","f_more_font_spacing":"","f_more_":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","f_btn_font_title":"Article read more button","f_btn_font_settings":"","f_btn_font_family":"","f_btn_font_size":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_weight":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"","cat_style":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","btn_bg":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border":"","btn_border_hover":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","ajax_pagination_next_prev_swipe":"","ajax_pagination_infinite_stop":"","css":"","td_column_number":1,"header_color":"","color_preset":"","border_top":"","class":"tdi_124","tdc_css_class":"tdi_124","tdc_css_class_style":"tdi_124_rand_style"}'; block_tdi_124.td_column_number = "1"; block_tdi_124.block_type = "td_flex_block_1"; block_tdi_124.post_count = "5"; block_tdi_124.found_posts = "5939"; block_tdi_124.header_color = ""; block_tdi_124.ajax_pagination_infinite_stop = ""; block_tdi_124.max_num_pages = "1188"; tdBlocksArray.push(block_tdi_124); </script><div class="td-block-title-wrap"><h4 class="td-block-title"><span>Latest Articles</span></h4></div><div id=tdi_124 class="td_block_inner td-mc1-wrap"> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/native-agentic-programming-on-the-low-cost-claude-code-ollama-gemma4/" rel="bookmark" class="td-image-wrap " title="Native Agentic Programming on the Low cost: Claude Code + Ollama + Gemma4" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.kdnuggets.com/wp-content/uploads/KDN-Shittu-Local-Agentic-Programming-on-the-Cheap.png" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/machine-learning/" class="td-post-category" >Machine Learning</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/native-agentic-programming-on-the-low-cost-claude-code-ollama-gemma4/" rel="bookmark" title="Native Agentic Programming on the Low cost: Claude Code + Ollama + Gemma4">Native Agentic Programming on the Low cost: Claude Code + Ollama + Gemma4</a></h3> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/7-prime-autonomous-ai-pentesting-platforms-in-2026/" rel="bookmark" class="td-image-wrap " title="7 Prime Autonomous AI Pentesting Platforms in 2026" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://bigdataanalyticsnews.com/wp-content/uploads/2026/06/ai-pentesting-tools.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/artificial-intelligence/" class="td-post-category" >Artificial Intelligence</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/7-prime-autonomous-ai-pentesting-platforms-in-2026/" rel="bookmark" title="7 Prime Autonomous AI Pentesting Platforms in 2026">7 Prime Autonomous AI Pentesting Platforms in 2026</a></h3> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/a-complete-ebook-about-that-one-matt-bors-comedian/" rel="bookmark" class="td-image-wrap " title="A complete ebook about That One Matt Bors Comedian" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://boingboing.net/wp-content/uploads/2026/06/bors.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/technology/" class="td-post-category" >Technology</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/a-complete-ebook-about-that-one-matt-bors-comedian/" rel="bookmark" title="A complete ebook about That One Matt Bors Comedian">A complete ebook about That One Matt Bors Comedian</a></h3> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/earths-stratosphere-is-a-mysterious-superhighway-for-microbes/" rel="bookmark" class="td-image-wrap " title="Earth’s stratosphere is a mysterious superhighway for microbes" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://www.sciencenews.org/wp-content/uploads/sites/2/2026/06/0726_stratosphere_main.jpg" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/science/" class="td-post-category" >Science</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/earths-stratosphere-is-a-mysterious-superhighway-for-microbes/" rel="bookmark" title="Earth’s stratosphere is a mysterious superhighway for microbes">Earth’s stratosphere is a mysterious superhighway for microbes</a></h3> </div> </div> </div> <div class="td_module_flex td_module_flex_1 td_module_wrap td-animation-stack td-cpt-post"> <div class="td-module-container td-category-pos-above"> <div class="td-image-container"> <div class="td-module-thumb"><a href="https://analyticscampus.com/ferguson-and-the-deconstruction-of-late-night-time/" rel="bookmark" class="td-image-wrap " title="Ferguson and the deconstruction of late night time" ><span class="entry-thumb td-thumb-css" data-type="css_image" data-img-url="https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_uke2A3scaszyJFjpl6bdwp27vpGGdT83UrK77E1dGReZT_nmrFNnIETn4DQlNl72PzQEDc8pzLt70yYF2Ohhyh2vUf47i-Vkcds6PNTxhHwFlzSw=w1200-h630-n-k-no-nu" ></span></a></div> </div> <div class="td-module-meta-info"> <a href="https://analyticscampus.com/category/epidemiology/" class="td-post-category" >Epidemiology</a> <h3 class="entry-title td-module-title"><a href="https://analyticscampus.com/ferguson-and-the-deconstruction-of-late-night-time/" rel="bookmark" title="Ferguson and the deconstruction of late night time">Ferguson and the deconstruction of late night time</a></h3> </div> </div> </div> </div><div class="td-load-more-wrap"><a href="#" class="td_ajax_load_more td_ajax_load_more_js" aria-label="Load more" id="next-page-tdi_124" data-td_block_id="tdi_124">Load more<i class="td-load-more-icon td-icon-font td-icon-menu-right"></i></a></div></div></div></div></div></div></div></div> <span class="td-page-meta" itemprop="author" itemscope itemtype="https://schema.org/Person"><meta itemprop="name" content="Dr. Mike"><meta itemprop="url" content="https://analyticscampus.com/author/analytics/"></span><meta itemprop="datePublished" content="2026-06-10T22:58:24+00:00"><meta itemprop="dateModified" content="2026-06-10T22:58:25+00:00"><meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="https://analyticscampus.com/creating-memorable-internet-experiences-a-trendy-css-toolkit/"/><span class="td-page-meta" itemprop="publisher" itemscope itemtype="https://schema.org/Organization"><span class="td-page-meta" itemprop="logo" itemscope itemtype="https://schema.org/ImageObject"><meta itemprop="url" content="https://analyticscampus.com/wp-content/uploads/2025/10/Analytics-Campus-1-300x90.png"></span><meta itemprop="name" content="Analytics Campus"></span><meta itemprop="headline" content="Creating Memorable Internet Experiences: A Trendy CSS Toolkit"><span class="td-page-meta" itemprop="image" itemscope itemtype="https://schema.org/ImageObject"><meta itemprop="url" content="https://i0.wp.com/css-tricks.com/wp-content/uploads/2026/04/psychedlic-event.webp"><meta itemprop="width" content="0"><meta itemprop="height" content="0"></span> </article> </div> </div> </div> <!-- #tdb-autoload-article --> <div class="td-footer-template-wrap" style="position: relative; "> <div class="td-footer-wrap "> <div id="tdi_125" class="tdc-zone"><div class="tdc_zone tdi_126 wpb_row td-pb-row" > <style scoped>.tdi_126{min-height:0}.tdi_126{margin-right:auto!important;margin-left:auto!important;width:1164px!important}@media (min-width:1019px) and (max-width:1140px){.tdi_126{width:100%!important}}@media (min-width:768px) and (max-width:1018px){.tdi_126{width:100%!important}}@media (max-width:767px){.tdi_126{width:100%!important}}</style><div id="tdi_127" class="tdc-row"><div class="vc_row tdi_128 wpb_row td-pb-row tdc-element-style" > <style scoped>.tdi_128,.tdi_128 .tdc-columns{min-height:0}.tdi_128,.tdi_128 .tdc-columns{display:block}.tdi_128 .tdc-columns{width:100%}.tdi_128:before,.tdi_128:after{display:table}.tdi_128{padding-top:60px!important;padding-bottom:60px!important;position:relative}.tdi_128 .td_block_wrap{text-align:left}@media (max-width:767px){.tdi_128{padding-top:40px!important;padding-bottom:40px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_128{padding-top:40px!important;padding-bottom:40px!important}}</style> <div class="tdi_127_rand_style td-element-style" ><div class="td-element-style-before"><style>.tdi_127_rand_style>.td-element-style-before{content:''!important;width:100%!important;height:100%!important;position:absolute!important;top:0!important;left:0!important;display:block!important;z-index:0!important;background-image:url("https://analyticscampus.com/wp-content/uploads/2025/10/3.jpg")!important;background-position:center center!important;opacity:0.2!important;background-size:cover!important}</style></div><style>.tdi_127_rand_style{background-color:#232d35!important}</style></div><div class="vc_column tdi_130 wpb_column vc_column_container tdc-column td-pb-span12"> <style scoped>.tdi_130{vertical-align:baseline}.tdi_130>.wpb_wrapper,.tdi_130>.wpb_wrapper>.tdc-elements{display:block}.tdi_130>.wpb_wrapper>.tdc-elements{width:100%}.tdi_130>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_130>.wpb_wrapper{width:auto;height:auto}</style><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_131 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_131" > <style>.tdi_131{width:72%!important}@media (max-width:767px){.tdi_131{width:100%!important}}@media (min-width:768px) and (max-width:1018px){.tdi_131{width:80%!important}}@media (min-width:1019px) and (max-width:1140px){.tdi_131{width:78%!important}}</style> <style>.tdm_block.tdm_block_inline_text{margin-bottom:0;vertical-align:top}.tdm_block.tdm_block_inline_text .tdm-descr{margin-bottom:0;-webkit-transform:translateZ(0);transform:translateZ(0)}.tdc-row-content-vert-center .tdm-inline-text-yes{vertical-align:middle}.tdc-row-content-vert-bottom .tdm-inline-text-yes{vertical-align:bottom}.tdi_131{text-align:center!important;margin-right:auto;margin-left:auto}.tdi_131 .tdm-descr{color:#eaeaea;font-family:Rubik!important;font-size:13px!important;line-height:1.6!important;font-weight:400!important}@media (min-width:768px) and (max-width:1018px){.tdi_131 .tdm-descr{font-size:11px!important}}</style><p class="tdm-descr">Analyticscampus is your science, technology and IT related website. We provide you with the latest breaking news and videos straight from science and tech industry.</p></div></div></div></div></div><div id="tdi_132" class="tdc-row"><div class="vc_row tdi_133 wpb_row td-pb-row tdc-element-style tdc-row-content-vert-center" > <style scoped>.tdi_133,.tdi_133 .tdc-columns{min-height:0}.tdi_133,.tdi_133 .tdc-columns{display:block}.tdi_133 .tdc-columns{width:100%}.tdi_133:before,.tdi_133:after{display:table}@media (min-width:767px){.tdi_133.tdc-row-content-vert-center,.tdi_133.tdc-row-content-vert-center .tdc-columns{display:flex;align-items:center;flex:1}.tdi_133.tdc-row-content-vert-bottom,.tdi_133.tdc-row-content-vert-bottom .tdc-columns{display:flex;align-items:flex-end;flex:1}.tdi_133.tdc-row-content-vert-center .td_block_wrap{vertical-align:middle}.tdi_133.tdc-row-content-vert-bottom .td_block_wrap{vertical-align:bottom}}.tdi_133{padding-top:8px!important;padding-bottom:8px!important;position:relative}.tdi_133 .td_block_wrap{text-align:left}@media (max-width:767px){.tdi_133{padding-top:10px!important;padding-bottom:5px!important}}@media (min-width:768px) and (max-width:1018px){.tdi_133{padding-top:6px!important;padding-bottom:6px!important}}</style> <div class="tdi_132_rand_style td-element-style" ><style>.tdi_132_rand_style{background-color:#11171c!important}</style></div><div class="vc_column tdi_135 wpb_column vc_column_container tdc-column td-pb-span6"> <style scoped>.tdi_135{vertical-align:baseline}.tdi_135>.wpb_wrapper,.tdi_135>.wpb_wrapper>.tdc-elements{display:block}.tdi_135>.wpb_wrapper>.tdc-elements{width:100%}.tdi_135>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_135>.wpb_wrapper{width:auto;height:auto}@media (max-width:767px){.tdi_135{margin-bottom:8px!important}}</style><div class="wpb_wrapper" ><div class="tdm_block td_block_wrap tdm_block_inline_text tdi_136 td-pb-border-top td_block_template_1" data-td-block-uid="tdi_136" > <style>@media (max-width:767px){.tdi_136{margin-top:0px!important;justify-content:center!important;text-align:center!important}}</style> <style>.tdi_136{text-align:left!important}.tdi_136 .tdm-descr{color:#cccccc;font-family:Rubik!important;font-size:13px!important;line-height:1.2!important}@media (min-width:768px) and (max-width:1018px){.tdi_136 .tdm-descr{font-size:11px!important}}</style><p class="tdm-descr">© Copyright 2025 - analyticscampus.com. All rights reserved.</p></div></div></div><div class="vc_column tdi_138 wpb_column vc_column_container tdc-column td-pb-span6"> <style scoped>.tdi_138{vertical-align:baseline}.tdi_138>.wpb_wrapper,.tdi_138>.wpb_wrapper>.tdc-elements{display:block}.tdi_138>.wpb_wrapper>.tdc-elements{width:100%}.tdi_138>.wpb_wrapper>.vc_row_inner{width:auto}.tdi_138>.wpb_wrapper{width:auto;height:auto}.tdi_138{justify-content:flex-end!important;text-align:right!important}@media (max-width:767px){.tdi_138{justify-content:center!important;text-align:center!important}}</style><div class="wpb_wrapper" ><div class="td_block_wrap td_block_list_menu tdi_139 td-blm-display-horizontal td-pb-border-top td_block_template_1 widget" data-td-block-uid="tdi_139" > <style>.tdi_139{margin-bottom:0px!important}@media(min-width:1141px){.tdi_139{display:inline-table!important}}@media (max-width:767px){.tdi_139{display:inline-block!important}}@media (min-width:768px) and (max-width:1018px){.tdi_139{display:inline-table!important}}@media (min-width:1019px) and (max-width:1140px){.tdi_139{display:inline-table!important}}</style> <style>.td_block_list_menu ul{flex-wrap:wrap;margin-left:12px}.td_block_list_menu ul li{margin-left:0}.td_block_list_menu ul li a{display:flex;margin-left:0}.td_block_list_menu .td-blm-menu-item-txt{display:flex;align-items:center;flex-grow:1}.td_block_list_menu .sub-menu{padding-left:22px}.td_block_list_menu .sub-menu li{font-size:13px}.td_block_list_menu li.current-menu-item>a,.td_block_list_menu li.current-menu-ancestor>a,.td_block_list_menu li.current-category-ancestor>a,.td_block_list_menu li.current-page-ancestor>a{color:var(--td_theme_color,#4db2ec)}.td_block_list_menu .td-blm-sub-icon{display:flex;align-items:center;justify-content:center;margin-left:.6em;padding:0 .6em;transition:transform .2s ease-in-out}.td_block_list_menu .td-blm-sub-icon svg{display:block;width:1em;height:auto}.td_block_list_menu .td-blm-sub-icon svg,.td_block_list_menu .td-blm-sub-icon svg *{fill:currentColor}.td_block_list_menu.td-blm-display-accordion .menu-item-has-children ul{display:none}.td_block_list_menu.td-blm-display-accordion .menu-item-has-children-open>a>.td-blm-sub-icon{transform:rotate(180deg)}.td_block_list_menu.td-blm-display-horizontal ul{display:flex}body .tdi_139 ul{text-align:left;justify-content:flex-start;margin:0px}body .tdi_139 ul li a{justify-content:flex-start}body .tdi_139 .td-blm-menu-item-txt{flex-grow:1}body .tdi_139 ul li{margin-right:16px}body .tdi_139 ul li:last-child{margin-right:0}body .tdi_139 a,body .tdi_139 .td-blm-sub-icon{color:#cccccc}body .tdi_139 li.current-menu-item>a,body .tdi_139 li.current-menu-ancestor>a,body .tdi_139 li.current-category-ancestor>a,body .tdi_139 li.current-page-ancestor>a,body .tdi_139 a:hover,body .tdi_139 li.current-menu-item>a>.td-blm-sub-icon,body .tdi_139 li.current-menu-ancestor>a>.td-blm-sub-icon,body .tdi_139 li.current-category-ancestor>a>.td-blm-sub-icon,body .tdi_139 li.current-page-ancestor>a>.td-blm-sub-icon,body .tdi_139 a:hover>.td-blm-sub-icon{color:#ffffff}body .tdi_139 li{font-family:Rubik!important;font-size:13px!important;line-height:1.2!important}@media (min-width:768px) and (max-width:1018px){body .tdi_139 li{font-size:11px!important}}</style><div class="td-block-title-wrap"></div><div id=tdi_139 class="td_block_inner td-fix-index"><div class="menu-footer-container"><ul id="menu-footer" class="menu"><li id="menu-item-828" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-828"><a href="https://analyticscampus.com/about-us-2/"><span class="td-blm-menu-item-txt">About US</span></a></li> <li id="menu-item-827" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-827"><a href="https://analyticscampus.com/contact-us-2/"><span class="td-blm-menu-item-txt">Contact Us</span></a></li> <li id="menu-item-825" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-825"><a href="https://analyticscampus.com/disclaimer/"><span class="td-blm-menu-item-txt">Disclaimer</span></a></li> <li id="menu-item-826" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-826"><a href="https://analyticscampus.com/privacy-policy-2/"><span class="td-blm-menu-item-txt">Privacy Policy</span></a></li> <li id="menu-item-824" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-824"><a href="https://analyticscampus.com/terms-and-conditions-2/"><span class="td-blm-menu-item-txt">Terms and Conditions</span></a></li> </ul></div></div></div></div></div></div></div></div></div> </div> </div> <style>.tdc-footer-template .td-main-content-wrap{padding-bottom:0}</style> </div><!--close td-outer-wrap--> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/Newspaper/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <!-- Theme: Newspaper by tagDiv.com 2024 Version: 12.6.8 (rara) Deploy mode: deploy uid: 6a29ec419b946 --> <!-- Custom css from theme panel --> <style type="text/css" media="screen">.tdc-font-tdmp{font-family:td-multipurpose}</style> <script id="wp-hooks-js" src="https://analyticscampus.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script> <script id="wp-i18n-js" src="https://analyticscampus.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); //# sourceURL=wp-i18n-js-after </script> <script id="swv-js" src="https://analyticscampus.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.6"></script> <script id="contact-form-7-js-before"> var wpcf7 = { "api": { "root": "https:\/\/analyticscampus.com\/wp-json\/", "namespace": "contact-form-7\/v1" }, "cached": 1 }; //# sourceURL=contact-form-7-js-before </script> <script id="contact-form-7-js" src="https://analyticscampus.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.6"></script> <script id="td-site-min-js" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tagdiv_theme.min.js?ver=12.6.8"></script> <script id="tdPostImages-js" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdPostImages.js?ver=12.6.8"></script> <script id="tdSocialSharing-js" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSocialSharing.js?ver=12.6.8"></script> <script id="tdModalPostImages-js" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdModalPostImages.js?ver=12.6.8"></script> <script async data-wp-strategy="async" fetchpriority="low" id="comment-reply-js" src="https://analyticscampus.com/wp-includes/js/comment-reply.min.js?ver=7.0"></script> <script id="tdb_js_files_for_front-js" src="https://analyticscampus.com/wp-content/plugins/td-cloud-library/assets/js/js_files_for_front.min.js?ver=b33652f2535d2f3812f59e306e26300d"></script> <script id="wp-emoji-settings" type="application/json"> {"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://analyticscampus.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}} </script> <script type="module"> /*! This file is auto-generated */ const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))}); //# sourceURL=https://analyticscampus.com/wp-includes/js/wp-emoji-loader.min.js </script> <script type="text/javascript" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdToTop.js?ver=12.6.8" id="tdToTop-js"></script> <script type="text/javascript" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdAjaxSearch.js?ver=12.6.8" id="tdDatei18n-js"></script> <script type="text/javascript" src="https://analyticscampus.com/wp-content/plugins/td-cloud-library/assets/js/tdbMenu.js?ver=b33652f2535d2f3812f59e306e26300d" id="tdbMenu-js"></script> <script type="text/javascript" src="https://analyticscampus.com/wp-content/plugins/td-cloud-library/assets/js/tdbSearch.js?ver=b33652f2535d2f3812f59e306e26300d" id="tdbSearch-js"></script> <script type="text/javascript" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdMenu.js?ver=12.6.8" id="tdMenu-js"></script> <script type="text/javascript" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdLoadingBox.js?ver=12.6.8" id="tdLoadingBox-js"></script> <script type="text/javascript" src="https://analyticscampus.com/wp-content/plugins/td-composer/legacy/Newspaper/js/tdSmartSidebar.js?ver=12.6.8" id="tdSmartSidebar-js"></script> <!-- JS generated by theme --> <script type="text/javascript" id="td-generated-footer-js"> /* global jQuery:{} */ jQuery(document).ready( function () { var tdbMenuItem = new tdbMenu.item(); tdbMenuItem.blockUid = 'tdi_59'; tdbMenuItem.jqueryObj = jQuery('.tdi_59'); tdbMenuItem.blockAtts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","tdc_css":"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiItMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_59","tdc_css_class":"tdi_59","tdc_css_class_style":"tdi_59_rand_style","context":""}'; tdbMenuItem.isMegaMenuFull = true; tdbMenuItem.megaMenuLoadType = ''; tdbMenu.addItem(tdbMenuItem); }); jQuery().ready(function () { var tdbSearchItem = new tdbSearch.item(); //block unique ID tdbSearchItem.blockUid = 'tdi_64'; tdbSearchItem.blockAtts = '{"results_msg_align":"content-horiz-center","image_floated":"float_left","image_width":"30","image_size":"td_324x400","show_cat":"none","show_btn":"none","show_date":"","show_review":"none","show_com":"none","show_excerpt":"none","show_author":"none","meta_padding":"0 0 0 15px","art_title":"0 0 5px","all_modules_space":"15","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==","form_align":"content-horiz-right","icon_color":"#ffffff","icon_size":"eyJhbGwiOiIxOCIsInBvcnRyYWl0IjoiMTQifQ==","icon_padding":"eyJhbGwiOjIuNiwicG9ydHJhaXQiOiIyLjgifQ==","tdicon":"td-icon-magnifier-medium-short-light","show_form":"yes","form_border_color":"#dd3333","arrow_color":"#dd3333","form_shadow_shadow_size":"10","form_shadow_shadow_color":"rgba(0,0,0,0.12)","f_input_font_family":"712","f_input_font_weight":"400","f_btn_font_family":"712","f_btn_font_weight":"400","f_input_font_size":"13","f_placeholder_font_family":"712","f_placeholder_font_weight":"400","f_placeholder_font_size":"13","f_btn_font_size":"13","f_results_msg_font_family":"712","f_results_msg_font_size":"11","f_title_font_family":"712","f_title_font_size":"13","f_title_font_line_height":"1.2","f_meta_font_family":"712","f_meta_font_size":"11","f_meta_font_line_height":"1","title_txt_hover":"#008d7f","btn_bg_h":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjMDA4ZDdmIiwiY29sb3IyIjoiIzAwOGQ3ZiIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzAwOGQ3ZjsiLCJjc3NQYXJhbXMiOiIwZGVnLCMwMDhkN2YsIzAwOGQ3ZiJ9","modules_gap":"0","image_height":"80","meta_info_align":"center","results_msg_color_h":"#008d7f","block_type":"tdb_header_search","post_type":"","disable_trigger":"","show_results":"yes","separator":"","disable_live_search":"","exclude_pages":"","exclude_posts":"","search_section_header":"","results_section_1_title":"","results_section_1_taxonomies":"","results_section_1_level":"","results_section_2_title":"","results_section_2_taxonomies":"","results_section_2_level":"","results_section_3_title":"","results_section_3_taxonomies":"","results_section_3_level":"","results_section_search_query_terms":"","results_section_search_query_terms_title":"","results_section_search_query_terms_taxonomies":"","sec_title_space":"","sec_title_color":"","tax_space":"","tax_title_color":"","tax_title_color_h":"","f_sec_title_font_header":"","f_sec_title_font_title":"Section title text","f_sec_title_font_settings":"","f_sec_title_font_family":"","f_sec_title_font_size":"","f_sec_title_font_line_height":"","f_sec_title_font_style":"","f_sec_title_font_weight":"","f_sec_title_font_transform":"","f_sec_title_font_spacing":"","f_sec_title_":"","f_tax_title_font_title":"Taxonomy title text","f_tax_title_font_settings":"","f_tax_title_font_family":"","f_tax_title_font_size":"","f_tax_title_font_line_height":"","f_tax_title_font_style":"","f_tax_title_font_weight":"","f_tax_title_font_transform":"","f_tax_title_font_spacing":"","f_tax_title_":"","toggle_txt":"","toggle_txt_pos":"","toggle_txt_align":"0","toggle_txt_space":"","aria_label":"Search","toggle_horiz_align":"content-horiz-left","inline":"","float_block":"","form_offset":"","form_offset_left":"","form_width":"","form_content_width":"","form_padding":"","form_border":"","form_align_screen":"","input_placeholder":"","placeholder_travel":"0","input_padding":"","input_border":"","input_radius":"","btn_text":"Search","btn_aria_label":"Search","btn_tdicon":"","btn_icon_pos":"","btn_icon_size":"","btn_icon_space":"","btn_icon_align":"0","btn_margin":"","btn_padding":"","btn_border":"","btn_radius":"","results_padding":"","results_border":"","results_msg_padding":"","results_msg_border":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","results_limit":"","open_in_new_window":"","modules_on_row":"100%","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","art_btn":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","btn_title":"","btn_border_width":"","form_general_bg":"","icon_color_h":"","toggle_txt_color":"","toggle_txt_color_h":"","f_toggle_txt_font_header":"","f_toggle_txt_font_title":"Text","f_toggle_txt_font_settings":"","f_toggle_txt_font_family":"","f_toggle_txt_font_size":"","f_toggle_txt_font_line_height":"","f_toggle_txt_font_style":"","f_toggle_txt_font_weight":"","f_toggle_txt_font_transform":"","f_toggle_txt_font_spacing":"","f_toggle_txt_":"","form_bg":"","form_shadow_shadow_header":"","form_shadow_shadow_title":"Shadow","form_shadow_shadow_offset_horizontal":"","form_shadow_shadow_offset_vertical":"","form_shadow_shadow_spread":"","input_color":"","placeholder_color":"","placeholder_opacity":"0","input_bg":"","input_border_color":"","input_shadow_shadow_header":"","input_shadow_shadow_title":"Input shadow","input_shadow_shadow_size":"","input_shadow_shadow_offset_horizontal":"","input_shadow_shadow_offset_vertical":"","input_shadow_shadow_spread":"","input_shadow_shadow_color":"","btn_color":"","btn_color_h":"","btn_icon_color":"","btn_icon_color_h":"","btn_bg":"","btn_border_color":"","btn_border_color_h":"","btn_shadow_shadow_header":"","btn_shadow_shadow_title":"Button shadow","btn_shadow_shadow_size":"","btn_shadow_shadow_offset_horizontal":"","btn_shadow_shadow_offset_vertical":"","btn_shadow_shadow_spread":"","btn_shadow_shadow_color":"","f_input_font_header":"","f_input_font_title":"Input text","f_input_font_settings":"","f_input_font_line_height":"","f_input_font_style":"","f_input_font_transform":"","f_input_font_spacing":"","f_input_":"","f_placeholder_font_title":"Placeholder text","f_placeholder_font_settings":"","f_placeholder_font_line_height":"","f_placeholder_font_style":"","f_placeholder_font_transform":"","f_placeholder_font_spacing":"","f_placeholder_":"","f_btn_font_title":"Button text","f_btn_font_settings":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","results_bg":"","results_border_color":"","results_msg_color":"","results_msg_bg":"","results_msg_border_color":"","f_results_msg_font_header":"","f_results_msg_font_title":"Text","f_results_msg_font_settings":"","f_results_msg_font_line_height":"","f_results_msg_font_style":"","f_results_msg_font_weight":"","f_results_msg_font_transform":"","f_results_msg_font_spacing":"","f_results_msg_":"","m_bg":"","color_overlay":"","shadow_module_shadow_header":"","shadow_module_shadow_title":"Module Shadow","shadow_module_shadow_size":"","shadow_module_shadow_offset_horizontal":"","shadow_module_shadow_offset_vertical":"","shadow_module_shadow_spread":"","shadow_module_shadow_color":"","title_txt":"","all_underline_height":"","all_underline_color":"#000","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_meta_shadow_header":"","shadow_meta_shadow_title":"Meta info shadow","shadow_meta_shadow_size":"","shadow_meta_shadow_offset_horizontal":"","shadow_meta_shadow_offset_vertical":"","shadow_meta_shadow_spread":"","shadow_meta_shadow_color":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border_hover":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_weight":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_64","tdc_css_class":"tdi_64","tdc_css_class_style":"tdi_64_rand_style"}'; tdbSearchItem.jqueryObj = jQuery('.tdi_64'); tdbSearchItem._openSearchFormClass = 'tdb-drop-down-search-open'; tdbSearchItem._resultsLimit = '4'; tdbSearch.addItem( tdbSearchItem ); }); /* global jQuery:{} */ jQuery(document).ready( function () { var tdbMenuItem = new tdbMenu.item(); tdbMenuItem.blockUid = 'tdi_78'; tdbMenuItem.jqueryObj = jQuery('.tdi_78'); tdbMenuItem.blockAtts = '{"main_sub_tdicon":"td-icon-down","sub_tdicon":"td-icon-right-arrow","mm_align_horiz":"content-horiz-center","modules_on_row_regular":"20%","modules_on_row_cats":"20%","image_size":"td_324x400","modules_category":"above","show_excerpt":"none","show_com":"none","show_date":"none","show_author":"none","mm_sub_align_horiz":"content-horiz-right","mm_elem_align_horiz":"content-horiz-center","mm_align_screen":"yes","f_elem_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTAifQ==","elem_padd":"eyJwb3J0cmFpdCI6IjAgMTBweCIsImFsbCI6IjAgMTJweCJ9","menu_id":"","text_color":"#ffffff","tds_menu_active":"tds_menu_active3","f_elem_font_line_height":"eyJhbGwiOiI0OHB4IiwicG9ydHJhaXQiOiI0MHB4In0=","f_elem_font_family":"712","f_elem_font_transform":"capitalize","f_elem_font_weight":"400","f_elem_font_spacing":"0.4","tdc_css":"eyJhbGwiOnsibWFyZ2luLWxlZnQiOiItMTAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0Ijp7ImRpc3BsYXkiOiIifSwicG9ydHJhaXRfbWF4X3dpZHRoIjoxMDE4LCJwb3J0cmFpdF9taW5fd2lkdGgiOjc2OH0=","main_sub_icon_size":"eyJhbGwiOiIxMCIsInBvcnRyYWl0IjoiOSJ9","tds_menu_active3-bg_color":"#000000","f_sub_elem_font_family":"712","f_sub_elem_font_size":"12","mm_shadow_shadow_size":"20","mm_shadow_shadow_color":"rgba(0,0,0,0.15)","sub_shadow_shadow_size":"10","sub_shadow_shadow_offset_horizontal":"0","sub_shadow_shadow_offset_vertical":"2","sub_shadow_shadow_color":"rgba(0,0,0,0.15)","mm_shadow_shadow_offset_vertical":"4","sub_first_left":"-15","sub_rest_top":"-15","sub_padd":"10px 0 15px","sub_elem_padd":"5px 20px","align_horiz":"content-horiz-center","main_sub_icon_align":"eyJhbGwiOjEsInBvcnRyYWl0IjoiMCJ9","f_sub_elem_font_weight":"500","mm_child_cats":"10","main_sub_icon_space":"eyJwb3J0cmFpdCI6IjUifQ==","show_mega_cats":"yes","sub_text_color":"#000000","tds_menu_sub_active1-sub_text_color_h":"#008d7f","mm_border_size":"0","mm_elem_border":"0","mm_elem_border_a":"0","mm_sub_width":"100%","mm_elem_padd":"eyJhbGwiOiI1cHggMTVweCIsInBvcnRyYWl0IjoiM3B4IDEycHgifQ==","modules_gap":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiNyJ9","all_modules_space":"0","mm_sub_padd":"eyJhbGwiOiI1cHggMCAxNXB4ICIsInBvcnRyYWl0IjoiM3B4IDAgMTJweCAifQ==","mm_width":"eyJhbGwiOiIxMTY0IiwibGFuZHNjYXBlIjoiMTAwJSIsInBvcnRyYWl0IjoiMTAwJSJ9","mm_padd":"eyJhbGwiOiIyNSIsImxhbmRzY2FwZSI6IjIwIiwicG9ydHJhaXQiOiIxNSJ9","mm_sub_inline":"yes","mm_sub_border":"0","mm_subcats_posts_limit":"5","mm_subcats_bg":"#ffffff","meta_info_horiz":"content-horiz-center","meta_padding":"eyJhbGwiOiIxNXB4IDVweCAwIDVweCIsInBvcnRyYWl0IjoiMTJweCAwIDAgMCJ9","modules_category_padding":"0","art_title":"eyJhbGwiOiIxMHB4IDAgMCAwIiwicG9ydHJhaXQiOiI4cHggMCAwIDAifQ==","art_excerpt":"0","f_mm_sub_font_family":"712","f_mm_sub_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_mm_sub_font_line_height":"1.2","f_mm_sub_font_weight":"500","title_txt_hover":"#008d7f","title_txt":"#000000","mm_elem_color_a":"#008d7f","cat_bg":"rgba(255,255,255,0)","cat_bg_hover":"rgba(255,255,255,0)","cat_txt":"#000000","cat_txt_hover":"#008d7f","pag_h_bg":"#008d7f","pag_h_border":"#008d7f","f_title_font_family":"712","f_title_font_size":"eyJhbGwiOiIxNSIsInBvcnRyYWl0IjoiMTEifQ==","f_title_font_line_height":"1.2","f_title_font_weight":"500","f_cat_font_size":"eyJhbGwiOiIxMyIsInBvcnRyYWl0IjoiMTEifQ==","f_cat_font_line_height":"1","f_cat_font_weight":"400","f_cat_font_transform":"uppercase","pag_icons_size":"eyJwb3J0cmFpdCI6IjYifQ==","mc1_title_tag":"p","block_type":"tdb_header_menu","show_subcat":"","show_mega":"","mob_load":"","separator":"","width":"","inline":"","more":"","float_right":"","elem_space":"","sep_tdicon":"","sep_icon_size":"","sep_icon_space":"","sep_icon_align":"-1","more_txt":"","more_tdicon":"","more_icon_size":"","more_icon_align":"0","sub_width":"","sub_align_horiz":"content-horiz-left","sub_elem_inline":"","sub_elem_space":"","sub_elem_radius":"0","sub_icon_size":"","sub_icon_space":"","sub_icon_pos":"","sub_icon_align":"1","mm_content_width":"","mm_height":"","mm_radius":"","mm_offset":"","mm_posts_limit":"5","open_in_new_window":"","mm_ajax_preloading":"","mm_hide_all_item":"","mm_elem_order":"name","mm_elem_space":"","mm_elem_border_rad":"","mc1_tl":"","mc1_el":"","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_height":"","image_width":"","image_floated":"no_float","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","show_audio":"block","hide_audio":"","art_audio":"","art_audio_size":"1","meta_info_align":"","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","modules_category_margin":"","modules_cat_border":"","modules_category_radius":"0","show_cat":"inline-block","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","show_review":"inline-block","review_space":"","review_size":"2.5","review_distance":"","show_pagination":"","pag_space":"","pag_padding":"","pag_border_width":"","pag_border_radius":"","prev_tdicon":"","next_tdicon":"","main_sub_color":"","sep_color":"","more_icon_color":"","hover_opacity":"","f_elem_font_header":"","f_elem_font_title":"Elements text","f_elem_font_settings":"","f_elem_font_style":"","f_elem_":"","sub_bg_color":"","sub_border_size":"","sub_border_color":"","sub_border_radius":"","sub_elem_bg_color":"","sub_color":"","sub_shadow_shadow_header":"","sub_shadow_shadow_title":"Shadow","sub_shadow_shadow_spread":"","tds_menu_sub_active":"tds_menu_sub_active1","f_sub_elem_font_header":"","f_sub_elem_font_title":"Elements text","f_sub_elem_font_settings":"","f_sub_elem_font_line_height":"","f_sub_elem_font_style":"","f_sub_elem_font_transform":"","f_sub_elem_font_spacing":"","f_sub_elem_":"","mm_bg":"","mm_content_bg":"","mm_border_color":"","mm_shadow_shadow_header":"","mm_shadow_shadow_title":"Shadow","mm_shadow_shadow_offset_horizontal":"","mm_shadow_shadow_spread":"","mm_subcats_border_color":"","mm_elem_color":"","mm_elem_bg":"","mm_elem_bg_a":"","mm_elem_border_color":"","mm_elem_border_color_a":"","mm_elem_shadow_shadow_header":"","mm_elem_shadow_shadow_title":"Elements shadow","mm_elem_shadow_shadow_size":"","mm_elem_shadow_shadow_offset_horizontal":"","mm_elem_shadow_shadow_offset_vertical":"","mm_elem_shadow_shadow_spread":"","mm_elem_shadow_shadow_color":"","f_mm_sub_font_header":"","f_mm_sub_font_title":"Sub categories elements","f_mm_sub_font_settings":"","f_mm_sub_font_style":"","f_mm_sub_font_transform":"","f_mm_sub_font_spacing":"","f_mm_sub_":"","m_bg":"","color_overlay":"","shadow_shadow_header":"","shadow_shadow_title":"Module Shadow","shadow_shadow_size":"","shadow_shadow_offset_horizontal":"","shadow_shadow_offset_vertical":"","shadow_shadow_spread":"","shadow_shadow_color":"","all_underline_height":"","all_underline_color":"#000","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_m_shadow_header":"","shadow_m_shadow_title":"Meta info shadow","shadow_m_shadow_size":"","shadow_m_shadow_offset_horizontal":"","shadow_m_shadow_offset_vertical":"","shadow_m_shadow_spread":"","shadow_m_shadow_color":"","audio_btn_color":"","audio_time_color":"","audio_bar_color":"","audio_bar_curr_color":"","pag_text":"","pag_h_text":"","pag_bg":"","pag_border":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_style":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_family":"","f_meta_font_size":"","f_meta_font_line_height":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","mix_color":"","mix_type":"","fe_brightness":"1","fe_contrast":"1","fe_saturate":"1","mix_color_h":"","mix_type_h":"","fe_brightness_h":"1","fe_contrast_h":"1","fe_saturate_h":"1","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_78","tdc_css_class":"tdi_78","tdc_css_class_style":"tdi_78_rand_style","context":""}'; tdbMenuItem.isMegaMenuFull = true; tdbMenuItem.megaMenuLoadType = ''; tdbMenu.addItem(tdbMenuItem); }); jQuery().ready(function () { var tdbSearchItem = new tdbSearch.item(); //block unique ID tdbSearchItem.blockUid = 'tdi_83'; tdbSearchItem.blockAtts = '{"results_msg_align":"content-horiz-center","image_floated":"float_left","image_width":"30","image_size":"td_324x400","show_cat":"none","show_btn":"none","show_date":"","show_review":"none","show_com":"none","show_excerpt":"none","show_author":"none","meta_padding":"0 0 0 15px","art_title":"0 0 5px","all_modules_space":"15","tdc_css":"eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==","form_align":"content-horiz-right","icon_color":"#ffffff","icon_size":"eyJhbGwiOiIxOCIsInBvcnRyYWl0IjoiMTQifQ==","icon_padding":"eyJhbGwiOjIuNiwicG9ydHJhaXQiOiIyLjgifQ==","tdicon":"td-icon-magnifier-medium-short-light","show_form":"yes","form_border_color":"#dd3333","arrow_color":"#dd3333","form_shadow_shadow_size":"10","form_shadow_shadow_color":"rgba(0,0,0,0.12)","f_input_font_family":"712","f_input_font_weight":"400","f_btn_font_family":"712","f_btn_font_weight":"400","f_input_font_size":"13","f_placeholder_font_family":"712","f_placeholder_font_weight":"400","f_placeholder_font_size":"13","f_btn_font_size":"13","f_results_msg_font_family":"712","f_results_msg_font_size":"11","f_title_font_family":"712","f_title_font_size":"13","f_title_font_line_height":"1.2","f_meta_font_family":"712","f_meta_font_size":"11","f_meta_font_line_height":"1","title_txt_hover":"#008d7f","btn_bg_h":"eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjMDA4ZDdmIiwiY29sb3IyIjoiIzAwOGQ3ZiIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZC1jb2xvcjogIzAwOGQ3ZjsiLCJjc3NQYXJhbXMiOiIwZGVnLCMwMDhkN2YsIzAwOGQ3ZiJ9","modules_gap":"0","image_height":"80","meta_info_align":"center","results_msg_color_h":"#008d7f","block_type":"tdb_header_search","post_type":"","disable_trigger":"","show_results":"yes","separator":"","disable_live_search":"","exclude_pages":"","exclude_posts":"","search_section_header":"","results_section_1_title":"","results_section_1_taxonomies":"","results_section_1_level":"","results_section_2_title":"","results_section_2_taxonomies":"","results_section_2_level":"","results_section_3_title":"","results_section_3_taxonomies":"","results_section_3_level":"","results_section_search_query_terms":"","results_section_search_query_terms_title":"","results_section_search_query_terms_taxonomies":"","sec_title_space":"","sec_title_color":"","tax_space":"","tax_title_color":"","tax_title_color_h":"","f_sec_title_font_header":"","f_sec_title_font_title":"Section title text","f_sec_title_font_settings":"","f_sec_title_font_family":"","f_sec_title_font_size":"","f_sec_title_font_line_height":"","f_sec_title_font_style":"","f_sec_title_font_weight":"","f_sec_title_font_transform":"","f_sec_title_font_spacing":"","f_sec_title_":"","f_tax_title_font_title":"Taxonomy title text","f_tax_title_font_settings":"","f_tax_title_font_family":"","f_tax_title_font_size":"","f_tax_title_font_line_height":"","f_tax_title_font_style":"","f_tax_title_font_weight":"","f_tax_title_font_transform":"","f_tax_title_font_spacing":"","f_tax_title_":"","toggle_txt":"","toggle_txt_pos":"","toggle_txt_align":"0","toggle_txt_space":"","aria_label":"Search","toggle_horiz_align":"content-horiz-left","inline":"","float_block":"","form_offset":"","form_offset_left":"","form_width":"","form_content_width":"","form_padding":"","form_border":"","form_align_screen":"","input_placeholder":"","placeholder_travel":"0","input_padding":"","input_border":"","input_radius":"","btn_text":"Search","btn_aria_label":"Search","btn_tdicon":"","btn_icon_pos":"","btn_icon_size":"","btn_icon_space":"","btn_icon_align":"0","btn_margin":"","btn_padding":"","btn_border":"","btn_radius":"","results_padding":"","results_border":"","results_msg_padding":"","results_msg_border":"","mc1_tl":"","mc1_title_tag":"","mc1_el":"","results_limit":"","open_in_new_window":"","modules_on_row":"100%","m_padding":"","modules_border_size":"","modules_border_style":"","modules_border_color":"#eaeaea","modules_divider":"","modules_divider_color":"#eaeaea","h_effect":"","image_alignment":"50","image_radius":"","hide_image":"","video_icon":"","show_vid_t":"block","vid_t_margin":"","vid_t_padding":"","vid_t_color":"","vid_t_bg_color":"","f_vid_time_font_header":"","f_vid_time_font_title":"Video duration text","f_vid_time_font_settings":"","f_vid_time_font_family":"","f_vid_time_font_size":"","f_vid_time_font_line_height":"","f_vid_time_font_style":"","f_vid_time_font_weight":"","f_vid_time_font_transform":"","f_vid_time_font_spacing":"","f_vid_time_":"","meta_info_horiz":"content-horiz-left","meta_width":"","meta_margin":"","meta_info_border_size":"","meta_info_border_style":"","meta_info_border_color":"#eaeaea","art_btn":"","modules_category":"","modules_category_margin":"","modules_category_padding":"","modules_cat_border":"","modules_category_radius":"0","modules_extra_cat":"","author_photo":"","author_photo_size":"","author_photo_space":"","author_photo_radius":"","show_modified_date":"","time_ago":"","time_ago_add_txt":"ago","time_ago_txt_pos":"","review_space":"","review_size":"2.5","review_distance":"","art_excerpt":"","excerpt_col":"1","excerpt_gap":"","excerpt_middle":"","btn_title":"","btn_border_width":"","form_general_bg":"","icon_color_h":"","toggle_txt_color":"","toggle_txt_color_h":"","f_toggle_txt_font_header":"","f_toggle_txt_font_title":"Text","f_toggle_txt_font_settings":"","f_toggle_txt_font_family":"","f_toggle_txt_font_size":"","f_toggle_txt_font_line_height":"","f_toggle_txt_font_style":"","f_toggle_txt_font_weight":"","f_toggle_txt_font_transform":"","f_toggle_txt_font_spacing":"","f_toggle_txt_":"","form_bg":"","form_shadow_shadow_header":"","form_shadow_shadow_title":"Shadow","form_shadow_shadow_offset_horizontal":"","form_shadow_shadow_offset_vertical":"","form_shadow_shadow_spread":"","input_color":"","placeholder_color":"","placeholder_opacity":"0","input_bg":"","input_border_color":"","input_shadow_shadow_header":"","input_shadow_shadow_title":"Input shadow","input_shadow_shadow_size":"","input_shadow_shadow_offset_horizontal":"","input_shadow_shadow_offset_vertical":"","input_shadow_shadow_spread":"","input_shadow_shadow_color":"","btn_color":"","btn_color_h":"","btn_icon_color":"","btn_icon_color_h":"","btn_bg":"","btn_border_color":"","btn_border_color_h":"","btn_shadow_shadow_header":"","btn_shadow_shadow_title":"Button shadow","btn_shadow_shadow_size":"","btn_shadow_shadow_offset_horizontal":"","btn_shadow_shadow_offset_vertical":"","btn_shadow_shadow_spread":"","btn_shadow_shadow_color":"","f_input_font_header":"","f_input_font_title":"Input text","f_input_font_settings":"","f_input_font_line_height":"","f_input_font_style":"","f_input_font_transform":"","f_input_font_spacing":"","f_input_":"","f_placeholder_font_title":"Placeholder text","f_placeholder_font_settings":"","f_placeholder_font_line_height":"","f_placeholder_font_style":"","f_placeholder_font_transform":"","f_placeholder_font_spacing":"","f_placeholder_":"","f_btn_font_title":"Button text","f_btn_font_settings":"","f_btn_font_line_height":"","f_btn_font_style":"","f_btn_font_transform":"","f_btn_font_spacing":"","f_btn_":"","results_bg":"","results_border_color":"","results_msg_color":"","results_msg_bg":"","results_msg_border_color":"","f_results_msg_font_header":"","f_results_msg_font_title":"Text","f_results_msg_font_settings":"","f_results_msg_font_line_height":"","f_results_msg_font_style":"","f_results_msg_font_weight":"","f_results_msg_font_transform":"","f_results_msg_font_spacing":"","f_results_msg_":"","m_bg":"","color_overlay":"","shadow_module_shadow_header":"","shadow_module_shadow_title":"Module Shadow","shadow_module_shadow_size":"","shadow_module_shadow_offset_horizontal":"","shadow_module_shadow_offset_vertical":"","shadow_module_shadow_spread":"","shadow_module_shadow_color":"","title_txt":"","all_underline_height":"","all_underline_color":"#000","cat_bg":"","cat_bg_hover":"","cat_txt":"","cat_txt_hover":"","cat_border":"","cat_border_hover":"","meta_bg":"","author_txt":"","author_txt_hover":"","date_txt":"","ex_txt":"","com_bg":"","com_txt":"","rev_txt":"","shadow_meta_shadow_header":"","shadow_meta_shadow_title":"Meta info shadow","shadow_meta_shadow_size":"","shadow_meta_shadow_offset_horizontal":"","shadow_meta_shadow_offset_vertical":"","shadow_meta_shadow_spread":"","shadow_meta_shadow_color":"","btn_bg_hover":"","btn_txt":"","btn_txt_hover":"","btn_border_hover":"","f_title_font_header":"","f_title_font_title":"Article title","f_title_font_settings":"","f_title_font_style":"","f_title_font_weight":"","f_title_font_transform":"","f_title_font_spacing":"","f_title_":"","f_cat_font_title":"Article category tag","f_cat_font_settings":"","f_cat_font_family":"","f_cat_font_size":"","f_cat_font_line_height":"","f_cat_font_style":"","f_cat_font_weight":"","f_cat_font_transform":"","f_cat_font_spacing":"","f_cat_":"","f_meta_font_title":"Article meta info","f_meta_font_settings":"","f_meta_font_style":"","f_meta_font_weight":"","f_meta_font_transform":"","f_meta_font_spacing":"","f_meta_":"","f_ex_font_title":"Article excerpt","f_ex_font_settings":"","f_ex_font_family":"","f_ex_font_size":"","f_ex_font_line_height":"","f_ex_font_style":"","f_ex_font_weight":"","f_ex_font_transform":"","f_ex_font_spacing":"","f_ex_":"","el_class":"","block_template_id":"","td_column_number":1,"header_color":"","ajax_pagination_infinite_stop":"","offset":"","limit":"5","td_ajax_preloading":"","td_ajax_filter_type":"","td_filter_default_txt":"","td_ajax_filter_ids":"","color_preset":"","ajax_pagination":"","ajax_pagination_next_prev_swipe":"","border_top":"","css":"","class":"tdi_83","tdc_css_class":"tdi_83","tdc_css_class_style":"tdi_83_rand_style"}'; tdbSearchItem.jqueryObj = jQuery('.tdi_83'); tdbSearchItem._openSearchFormClass = 'tdb-drop-down-search-open'; tdbSearchItem._resultsLimit = '4'; tdbSearch.addItem( tdbSearchItem ); }); jQuery(window).on( 'load', function () { var block = jQuery('.tdi_108'), blockClass = '.tdi_108', blockInner = block.find('.tdb-block-inner'), blockOffsetLeft; if( block.find('audio').length > 0 ) { jQuery(blockClass + ' audio').mediaelementplayer(); } if( block.hasClass('tdb-sfi-stretch') ) { jQuery(window).resize(function () { blockOffsetLeft = block.offset().left; if( block.hasClass('tdb-sfi-stretch-left') ) { blockInner.css('margin-left', -blockOffsetLeft + 'px'); } else { blockInner.css('margin-right', -(jQuery(window).width() - (blockOffsetLeft + block.outerWidth())) + 'px'); } }); jQuery(window).resize(); } setTimeout(function () { block.css('opacity', 1); }, 500); }); </script> <script>var td_res_context_registered_atts=["style_general_mobile_menu","style_general_header_align","style_general_header_logo","style_general_mobile_search","style_general_separator","style_general_header_date","style_general_header_menu","style_general_menu_active3","style_general_module_header","style_general_header_search","style_general_header_search_trigger_enabled","style_general_breadcrumbs","style_general_single_categories","style_general_single_title","style_general_title_single","style_bg_space","style_general_post_meta","style_general_single_author","style_general_single_date","style_general_comments_count","style_general_post_views","style_general_single_post_share","style_general_featured_image","style_general_single_content","style_general_single_tags","style_general_author_box","style_general_inline_text","style_general_list_menu","style_specific_list_menu_vertical","style_specific_list_menu_accordion","style_specific_list_menu_horizontal"];</script> </body> </html> <!-- Page cached by LiteSpeed Cache 7.8.1 on 2026-06-10 22:59:13 -->