Digmox
Яскравий, впевнений шаблон агенції з помаранчево-бурштиновим градієнтом у кожному акценті та масивними картками з відступною тінню.

Враження
Вайб
Digmox — це яскравий, впевнений шаблон агенції, який виграє завдяки одному сильному візуальному рішенню: помаранчево-бурштиновому лінійному градієнту (#EF721F → #FFAE2F), що проходить крізь усі акценти — підзаголовки, заливки кнопок, нумеровані бейджі, стрілки посилань, навіть SVG-обведення кнопки скролу нагору. Сторінка за замовчуванням біла, типографіка — поєднання Space Grotesk для заголовків і DM Sans для тексту, без зайвих ризиків. Майже на кожній картці повторюється один прийом: чорний ::before, зміщений на 5 пікселів вниз і вправо, з асиметричним радіусом 30/40/34/40. У підсумку це сучасний, ледь нео-брутальний настрій без Y2K — ближче до стартап-лендінгу 2024 року, ніж до важкого максималістичного шаблона.
Цільова аудиторія — цифрові агенції, маркетингові студії, дизайн-бутіки і невеликі консалтингові фірми, які хочуть отримати помітний, але професійний вигляд одразу з коробки. П'ять варіантів головної покривають маркетингову агенцію, креативну агенцію, дизайн-студію і "modern agency", плюс стандартний набір сторінок: послуги, проекти, блог, ціни, FAQ, контакти, 404. Підійде і фрілансеру-сеньйору чи розробнику, який веде студію з однієї людини. НЕ підходить для контентних сайтів (журнали, новини, освіта), SaaS-дашбордів, e-commerce та проектів, яким потрібна повноцінна темна тема — тут темні блоки лише стилістичні, не перемикаються.
Продакшн-застереження: це шаблон ери jQuery (jQuery, Owl Carousel, WOW.js, Isotope, Fancybox, jQuery UI, nice-select), тож сучасний rebuild, найімовірніше, скине половину залежностей. Sass-сорсу немає, тільки скомпільований CSS — токени градієнта і шрифтів живуть як CSS-змінні в style.css:71-78. Анімації побудовані на класах AOS/WOW плюс власних CSS keyframes; жодного GSAP, Lenis чи scroll-trigger тут немає, як і scroll-driven сцен. Градієнт акценту жорстко прописаний у багатьох місцях (а не тільки в --theme-color), тож для ребрендингу доведеться робити глобальну заміну #EF721F і #FFAE2F, а не просто правити змінну.
Палітра
Типографіка
Бібліотеки
Сторінки
- Home v1
index.html - Home Marketing Agency
index-2.html - Home Creative Agency
index-3.html - Home Design Studio
index-4.html - Home Modern Agency
index-5.html - About
about.html - Services
service.html - Services v2
service-2.html - Service Details
service-details.html - Projects
project.html - Projects v2
project-2.html - Project Details
project-details.html - Team
team.html - Team Details
team-details.html - Blog Grid
blog.html - Blog Standard
blog-2.html - Blog Details
blog-details.html - Pricing
pricing.html - FAQ
faq.html - Testimonials
testimonials.html - Contact
contact.html - 404
error.html
Ключові фішки
Hover-expanding portfolio tile that takes over its neighbour's column
- Де знайти
- index.html: section.project-section .project-block-one, assets/css/module-css/project.css: .project-block-one .inner-box .overlay-content
- Чому цікаво
- Each tile holds a hidden double-width overlay (200% + 15px) that scales from 0 to 1 on hover, so the active card visually swallows the next slot rather than just popping up a tooltip. The last child flips its transform-origin so the expansion goes left instead of overflowing.
- Коли використовувати
- Portfolio or case-study grids where you want hover to feel architectural and reveal a fuller title without a separate detail page or modal.
- Техніка
- Pure CSS transforms with transform-origin flip on :last-child; no JS required.
Offset-shadow card frame using nested pseudo-elements
- Де знайти
- assets/css/style.css: .block-shadow, assets/css/module-css/feature.css: .feature-block-one
- Чому цікаво
- Instead of a box-shadow, every card draws its black 'shadow' as a real ::before that's 5px wider and taller with rounded asymmetric corners (30px 40px 34px 40px). This gives the chunky neo-brutalist offset look that animates and matches border radius perfectly across browsers.
- Коли використовувати
- When you want a hard, designed offset-shadow that crops to a non-circular border-radius and stays crisp on retina, instead of a soft CSS shadow.
- Техніка
- CSS only: ::before with z-index -1 and asymmetric border-radius, plus an outer wrapper with padding-right/padding-bottom to reveal the offset.
Letter-by-letter rotateY preloader with stroked outline text
- Де знайти
- index.html: .handle-preloader .txt-loading, assets/css/style.css: @keyframes letters-loading
- Чому цікаво
- Each letter of 'digmox' is rendered twice: once as transparent text with -webkit-text-stroke (the outline) and once as a filled :before whose opacity and rotateY animate on a 0.2s stagger per letter. The result is a flipbook reveal rather than a generic spinner.
- Коли використовувати
- Brand-led preloaders where the wordmark itself should perform; works best with a short brand name (4-8 letters).
- Техніка
- @keyframes letters-loading with rotateY(-90deg) <-> 0deg, nth-child animation-delay stagger, -webkit-text-stroke for the hollow letterforms.
Triple-ring ripple around the play button
- Де знайти
- index.html: section.video-section .video-btn .border-animation, assets/css/style.css: .border-animation, @keyframes squares
- Чому цікаво
- Three absolutely-positioned spans share the same 2.9s 'squares' keyframe but with 0s/1s/2s delays, producing a continuously emitted ring effect rather than a single pulse. It is rendered as plain CSS without any JS hooks.
- Коли використовувати
- Video thumbnails, podcast players, or any clickable focal point where you want eye-catching motion that loops indefinitely without burning frames on JS.
- Техніка
- CSS keyframes with scale + opacity, three siblings with staggered animation-delay.
Owl carousel with crossfade and 8s ken-burns zoom on the active slide
- Де знайти
- index.html: .banner-carousel, assets/css/module-css/banner.css: .banner-carousel .slide-item .bg-layer, assets/js/script.js: $('.banner-carousel').owlCarousel
- Чому цікаво
- The owlCarousel is configured with animateIn/animateOut: fadeIn/fadeOut, but the .active .bg-layer transitions to scale(1.25) over 8000ms, so each slide drifts cinematically while the next one fades over it. Sub-elements (upper-text, h2, p, btn) each use their own 700-1300ms transition-delay so the copy ladders in.
- Коли використовувати
- Cinematic agency or product hero sliders where you want movement on a still photo without the cost of video.
- Техніка
- owl.carousel + CSS transitions on .active subselectors with manually tuned transition-delay values.
600s-loop CSS-only marquee with icomoon separators
- Де знайти
- index.html: .slide-text-outer .text-box, assets/css/style.css: @keyframes scroll-left, .slide-text-outer .text-box li:before
- Чому цікаво
- Capability words are duplicated 8x inside one ul, set to width: max-content, and translated -100% over 600 seconds for an extremely slow, hypnotic scroll. Each item gets a glyph from the icomoon font as a ::before separator, avoiding any extra markup or images.
- Коли використовувати
- Brand-keyword bands or section dividers where you want subtle motion that doesn't compete with neighbouring content.
- Техніка
- Pure CSS: @keyframes translateX, width: max-content, font-icon ::before.
Process accordion that reveals an image, not text
- Де знайти
- index.html: .accordion-box li.accordion, assets/css/module-css/process.css: .content_block_two .accordion.active-block .image-box, assets/js/script.js: '.accordion-box .acc-btn' click handler
- Чому цікаво
- The classic accordion pattern is inverted: the heading is always visible and clicking swaps in a process screenshot above the active step (display:none -> display:block on .active-block). It turns the accordion into a visual carousel without needing a separate carousel library.
- Коли використовувати
- Methodology, process, or feature-step sections where each step has a representative image but you want a compact stacked layout.
- Техніка
- jQuery click handler that toggles .active-block, with CSS .active-block .image-box{display:block}.
Live LTR/RTL direction switch built into the page
- Де знайти
- index.html: .page_direction .direction_switch button, assets/css/rtl.css, assets/js/script.js: directionswitch() function
- Чому цікаво
- Two fixed pill buttons toggle .rtl/.ltr on .boxed_wrapper, and every module CSS ships its own .rtl override block (.rtl .project-block-four .inner-box, etc.). The whole layout mirrors live with no reload, useful for Arabic/Hebrew client demos.
- Коли використовувати
- When you need a single template to demo or ship to bilingual markets without forking the stylesheet.
- Техніка
- jQuery class toggle plus a parallel rtl.css stylesheet with mirrored padding/transform-origin/float rules.
Компоненти
Full-screen preloader that flips each letter of 'digmox' on a Y-axis with stroked outline text and a stagger.
Multi-level dropdown navbar with sticky-on-scroll variant injected via fadeInDown and a phone CTA button.
Hero slider that crossfades while slowly Ken-Burns-zooming the background and timing-staggered text reveals on the active slide.
Four-up offset-shadow feature cards where the dark block sits 5px down-right of the white card, revealing a sliver behind.
Two-image about block with overlapping shape decorations and a floating 30+ years experience badge using the offset-shadow style.
Six-up dark service cards with numbered counters that flood-fill with the brand gradient on hover via a scaling pseudo-element.
Pure-CSS infinite marquee of capability words separated by an icomoon glyph, looping via translateX keyframes.
Numbered process steps as an exclusive accordion that reveals an inline image on the active block instead of a text drawer.
Animated counter row that triggers via jquery.appear and counts to a data-count value with the odometer plugin.
Parallax photo background with a circular play button surrounded by three staggered ripple borders and a Fancybox YouTube modal.
Two-column testimonial with portrait, gradient quote bubble, star rating, and an Owl carousel for the quote text.
Six-up portfolio tiles where hovering one expands an adjacent tile via scaleX, doubling its width with a longer title.
Full-bleed CTA with parallax background image, white headline, and the gradient theme button.
Two-column blog cards with date badge, gradient category tag, and the offset-shadow card frame.
Dark footer split into a logo + subscribe top, a connect-and-links middle, and a copyright bar with quick links.
Floating left/right pill buttons that toggle .rtl/.ltr classes on the wrapper to flip the entire layout.
Right-anchored chat drawer that slides in from off-canvas, dismissible via Escape key, backdrop click, or close button.
Floating scroll-to-top circle that uses an SVG path with a stroked progress stroke and gradient text fill for the arrow.