/**
 * Nettbox Plugin — front-end styles.
 *
 * Design tokens sampled from nettbox.creatif.work:
 *   brand blue   #28458F
 *   pill surface #EDF0F5
 *   page surface #F6F7FA
 *   ink          #111318
 *   muted text   #6E7481
 *   hairline     #E4E7ED
 *
 * Every colour below is also exposed as an Elementor control, so these values
 * are defaults rather than hard constraints.
 */

.zz-nb-cards {
	--zz-nb-blue: #28458f;
	--zz-nb-pill-surface: #edf0f5;
	--zz-nb-surface: #f6f7fa;
	--zz-nb-ink: #111318;
	--zz-nb-muted: #6e7481;
	--zz-nb-hairline: #e4e7ed;
	--zz-nb-gap: 24px;
	--zz-nb-duration: 0.38s;
	--zz-nb-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--zz-nb-scrim: rgba(9, 14, 26, 0.82);
	--zz-nb-scrim-hover: rgba(40, 69, 143, 0.9);
	--zz-nb-scrim-height: 62%;

	position: relative;
}

/* ---------------------------------------------------------------- Filter */

.zz-nb-filter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 40px;
}

.zz-nb-filter-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 40px;
	background-color: var(--zz-nb-pill-surface);
	color: var(--zz-nb-blue);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	transition:
		background-color var(--zz-nb-duration) var(--zz-nb-ease),
		border-color var(--zz-nb-duration) var(--zz-nb-ease),
		color var(--zz-nb-duration) var(--zz-nb-ease);
}

.zz-nb-filter-btn:focus-visible {
	outline: 2px solid var(--zz-nb-blue);
	outline-offset: 2px;
}

.zz-nb-filter-btn.is-active,
.zz-nb-filter-btn:hover {
	background-color: var(--zz-nb-blue);
	border-color: var(--zz-nb-blue);
	color: #fff;
}

.zz-nb-filter-count {
	font-size: 0.85em;
	font-weight: 500;
	color: var(--zz-nb-muted);
	transition: color var(--zz-nb-duration) var(--zz-nb-ease);
}

.zz-nb-filter-btn.is-active .zz-nb-filter-count,
.zz-nb-filter-btn:hover .zz-nb-filter-count {
	color: rgba(255, 255, 255, 0.75);
}

.zz-nb-no-results {
	margin: 0;
	padding: 48px 0;
	color: var(--zz-nb-muted);
	text-align: center;
}

/* ------------------------------------------------------------------ Grid */

.zz-nb-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--zz-nb-gap);
}

.zz-nb-card {
	--zz-nb-pill-inset: 16px;
	--zz-nb-arrow-inset: 24px;
	--zz-nb-glow: #28458f;
	--zz-nb-glow-width: 3px;
	--zz-nb-reveal: 20px;

	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 14px;
	isolation: isolate;
	transition:
		opacity var(--zz-nb-duration) var(--zz-nb-ease),
		transform var(--zz-nb-duration) var(--zz-nb-ease),
		box-shadow var(--zz-nb-duration) var(--zz-nb-ease);
}

/* Cards hidden by the category filter. */
.zz-nb-card.is-filtered-out {
	display: none;
}

.zz-nb-media-wrap {
	position: relative;
	overflow: hidden;
}

.zz-nb-media {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform 0.6s var(--zz-nb-ease);
}

.zz-nb-has-zoom .zz-nb-card:hover .zz-nb-media {
	transform: scale(1.06);
}

.zz-nb-card-link {
	position: absolute;
	inset: 0;
	z-index: 4;
	border-radius: inherit;
}

.zz-nb-card-link:focus-visible {
	outline: 2px solid #fff;
	outline-offset: -4px;
}

/* -------------------------------------------------------- Overlay card */

.zz-nb-card-overlay {
	height: 460px;
	justify-content: flex-end;
}

.zz-nb-card-overlay .zz-nb-media-wrap {
	position: absolute;
	inset: 0;
}

.zz-nb-card-overlay .zz-nb-media {
	position: absolute;
	inset: 0;
}

.zz-nb-scrim {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	height: var(--zz-nb-scrim-height);
	background-image: linear-gradient(to top, var(--zz-nb-scrim) 0%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
}

/* background-image is not animatable, so the hover gradient is a separate
   layer that cross-fades on top of the resting one. */
.zz-nb-scrim::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to top, var(--zz-nb-scrim-hover) 0%, rgba(0, 0, 0, 0) 100%);
	opacity: 0;
	transition: opacity var(--zz-nb-duration) var(--zz-nb-ease);
}

.zz-nb-card-overlay:hover .zz-nb-scrim::after,
.zz-nb-card-overlay:focus-within .zz-nb-scrim::after {
	opacity: 1;
}

.zz-nb-card-overlay .zz-nb-body {
	position: relative;
	z-index: 3;
	padding: 28px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.zz-nb-card-overlay .zz-nb-title,
.zz-nb-card-overlay .zz-nb-title a {
	color: #fff;
}

.zz-nb-card-overlay .zz-nb-desc {
	color: rgba(255, 255, 255, 0.86);
}

/* -------------------------------------------------------- Stacked card */

.zz-nb-card-stacked {
	background-color: #fff;
	border: 1px solid var(--zz-nb-hairline);
}

.zz-nb-card-stacked .zz-nb-media {
	display: block;
	width: 100%;
	height: 240px;
}

.zz-nb-card-stacked .zz-nb-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px;
}

.zz-nb-card-stacked .zz-nb-title,
.zz-nb-card-stacked .zz-nb-title a {
	color: var(--zz-nb-ink);
}

.zz-nb-card-stacked .zz-nb-desc {
	color: var(--zz-nb-muted);
}

/* ------------------------------------------------------------- Pills */

/* Corner slots over the image. Each is independently positioned so the
   category pill and the badge can sit in any corner, together or apart. */
.zz-nb-pill-slot {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	max-width: calc(100% - (var(--zz-nb-pill-inset) * 2));
	pointer-events: none;
}

.zz-nb-slot-tl {
	top: var(--zz-nb-pill-inset);
	left: var(--zz-nb-pill-inset);
}

.zz-nb-slot-tr {
	top: var(--zz-nb-pill-inset);
	right: var(--zz-nb-pill-inset);
	justify-content: flex-end;
}

.zz-nb-slot-bl {
	bottom: var(--zz-nb-pill-inset);
	left: var(--zz-nb-pill-inset);
}

.zz-nb-slot-br {
	bottom: var(--zz-nb-pill-inset);
	right: var(--zz-nb-pill-inset);
	justify-content: flex-end;
}

.zz-nb-pill-group {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}

.zz-nb-pill {
	display: inline-block;
	padding: 7px 16px;
	border: 1px solid transparent;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-transform: uppercase;
	white-space: nowrap;
}

.zz-nb-pill-cat {
	background-color: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	backdrop-filter: blur(10px) saturate(140%);
}

/* A pill moved into the content panel of a stacked card sits on a light
   surface, so it drops the glass treatment. */
.zz-nb-card-stacked .zz-nb-body .zz-nb-pill-cat {
	background-color: var(--zz-nb-pill-surface);
	border-color: transparent;
	color: var(--zz-nb-blue);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

/* Spacing between content elements is owned by the flex gap, not by
   per-element margins, so any order the client drags into produces even
   rhythm without stacked or collapsed margins. */
.zz-nb-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--zz-nb-body-gap, 14px);
}

.zz-nb-body > * {
	margin-top: 0;
	margin-bottom: 0;
}

.zz-nb-pill-badge {
	background-color: var(--zz-nb-blue);
	border-color: var(--zz-nb-blue);
	color: #fff;
}

/* -------------------------------------------------------------- Text */

.zz-nb-subtitle {
	display: block;
	color: var(--zz-nb-blue);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.zz-nb-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.22;
}

.zz-nb-title a {
	color: inherit;
	text-decoration: none;
}

.zz-nb-desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
}

/* ---------------------------------------------------------- Features */

.zz-nb-features {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.zz-nb-features li {
	position: relative;
	padding-left: 18px;
	color: #3d434f;
	font-size: 14px;
	line-height: 1.5;
}

.zz-nb-features li::before {
	content: "";
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--zz-nb-blue);
}

/* --------------------------------------------------------------- CTA */

.zz-nb-cta {
	position: relative;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border: 1px solid var(--zz-nb-blue);
	border-radius: 40px;
	background-color: var(--zz-nb-blue);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: opacity var(--zz-nb-duration) var(--zz-nb-ease);
}

.zz-nb-cta:hover {
	opacity: 0.88;
	color: #fff;
}

.zz-nb-cta svg {
	width: 16px;
	height: 16px;
}

/* ------------------------------------------------------------- Arrow */

.zz-nb-arrow {
	position: absolute;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: #fff;
	color: var(--zz-nb-ink);
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity var(--zz-nb-duration) var(--zz-nb-ease),
		transform var(--zz-nb-duration) var(--zz-nb-ease);
}

.zz-nb-arrow svg {
	width: 18px;
	height: 18px;
}

.zz-nb-arrow-tl .zz-nb-arrow {
	top: var(--zz-nb-arrow-inset);
	left: var(--zz-nb-arrow-inset);
}

.zz-nb-arrow-tr .zz-nb-arrow {
	top: var(--zz-nb-arrow-inset);
	right: var(--zz-nb-arrow-inset);
}

.zz-nb-arrow-bl .zz-nb-arrow {
	bottom: var(--zz-nb-arrow-inset);
	left: var(--zz-nb-arrow-inset);
}

.zz-nb-arrow-br .zz-nb-arrow {
	bottom: var(--zz-nb-arrow-inset);
	right: var(--zz-nb-arrow-inset);
}

.zz-nb-card-overlay:hover .zz-nb-arrow,
.zz-nb-card-overlay:focus-within .zz-nb-arrow {
	opacity: 1;
	transform: translateY(0);
}

/* Keep the copy clear of the arrow button's corner. */
.zz-nb-arrow-tr .zz-nb-title,
.zz-nb-arrow-tr .zz-nb-desc,
.zz-nb-arrow-br .zz-nb-title,
.zz-nb-arrow-br .zz-nb-desc {
	padding-right: 62px;
}

.zz-nb-arrow-tl .zz-nb-title,
.zz-nb-arrow-tl .zz-nb-desc,
.zz-nb-arrow-bl .zz-nb-title,
.zz-nb-arrow-bl .zz-nb-desc {
	padding-left: 62px;
}

/* ------------------------------------------------------ Hover effects */

.zz-nb-hover-lift:hover {
	transform: translateY(-8px);
}

.zz-nb-hover-glow {
	box-shadow: 0 0 0 0 var(--zz-nb-glow);
}

.zz-nb-hover-glow:hover,
.zz-nb-hover-glow:focus-within {
	box-shadow: 0 0 0 var(--zz-nb-glow-width) var(--zz-nb-glow);
}

/* Slide-up reveal: the title and pills stay put, everything else waits. */
.zz-nb-hover-reveal .zz-nb-desc,
.zz-nb-hover-reveal .zz-nb-features,
.zz-nb-hover-reveal .zz-nb-cta {
	opacity: 0;
	transform: translateY(var(--zz-nb-reveal));
	transition:
		opacity var(--zz-nb-duration) var(--zz-nb-ease),
		transform var(--zz-nb-duration) var(--zz-nb-ease);
}

.zz-nb-hover-reveal:hover .zz-nb-desc,
.zz-nb-hover-reveal:hover .zz-nb-features,
.zz-nb-hover-reveal:hover .zz-nb-cta,
.zz-nb-hover-reveal:focus-within .zz-nb-desc,
.zz-nb-hover-reveal:focus-within .zz-nb-features,
.zz-nb-hover-reveal:focus-within .zz-nb-cta {
	opacity: 1;
	transform: translateY(0);
}

/* ---------------------------------------------------------- Carousel */

.zz-nb-carousel {
	overflow: hidden;
}

/* Defensive fallback in case Elementor's Swiper stylesheet is not present. */
.zz-nb-carousel .swiper-wrapper {
	display: flex;
	box-sizing: content-box;
}

.zz-nb-carousel .swiper-slide {
	flex-shrink: 0;
	height: auto;
}

.zz-nb-nav {
	display: flex;
	gap: 12px;
	margin-top: 32px;
}

.zz-nb-nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: 1px solid #d8dce4;
	border-radius: 50%;
	background-color: transparent;
	color: var(--zz-nb-ink);
	cursor: pointer;
	transition:
		background-color var(--zz-nb-duration) var(--zz-nb-ease),
		border-color var(--zz-nb-duration) var(--zz-nb-ease),
		color var(--zz-nb-duration) var(--zz-nb-ease);
}

.zz-nb-nav-btn svg {
	width: 20px;
	height: 20px;
}

.zz-nb-nav-btn:hover {
	background-color: var(--zz-nb-blue);
	border-color: var(--zz-nb-blue);
	color: #fff;
}

.zz-nb-nav-btn[disabled] {
	opacity: 0.35;
	cursor: default;
}

.zz-nb-nav-btn[disabled]:hover {
	background-color: transparent;
	border-color: #d8dce4;
	color: var(--zz-nb-ink);
}

/* ------------------------------------------------- Single product bits */

.zz-nb-specs-heading,
.zz-nb-features-heading {
	margin: 0 0 18px;
	color: #111318;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.zz-nb-spec-list {
	margin: 0;
	padding: 0;
}

.zz-nb-spec-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
	border-bottom: 1px solid #e4e7ed;
}

.zz-nb-specs-columns .zz-nb-spec-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 40px;
}

.zz-nb-spec-label {
	margin: 0;
	flex: 0 0 auto;
	color: #6e7481;
	font-size: 15px;
}

.zz-nb-spec-value {
	margin: 0;
	color: #111318;
	font-size: 15px;
	font-weight: 600;
	text-align: right;
}

.zz-nb-feature-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.zz-nb-feature-list li {
	position: relative;
	padding-left: 26px;
	color: #3d434f;
	font-size: 16px;
	line-height: 1.55;
}

.zz-nb-feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	background-color: #28458f;
}

.zz-nb-marker-dot li::before {
	top: 0.55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

.zz-nb-marker-dash li::before {
	top: 0.72em;
	width: 14px;
	height: 2px;
	border-radius: 2px;
}

.zz-nb-marker-check li::before {
	content: "";
	top: 0.35em;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #28458f;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 11px 11px no-repeat,
		linear-gradient(#000, #000);
	-webkit-mask-composite: xor;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 11px 11px no-repeat;
}

/* ------------------------------------------------- Gallery: showcase */

.zz-nb-showcase {
	--zz-nb-showcase-gap: 16px;
	--zz-nb-thumb-cols: 5;
	--zz-nb-thumb-rows: 4;

	display: flex;
	flex-direction: column;
	gap: var(--zz-nb-showcase-gap);
}

.zz-nb-showcase-main {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
}

.zz-nb-showcase-frame {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 14px;
	background-color: #f6f7fa;
	aspect-ratio: 1 / 0.72;
	cursor: zoom-in;
}

.zz-nb-showcase-frame[disabled] {
	cursor: default;
}

.zz-nb-showcase-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.25s ease;
}

.zz-nb-showcase-frame.is-swapping img {
	opacity: 0;
}

.zz-nb-showcase-counter {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 6px 14px;
	border-radius: 30px;
	background-color: rgba(17, 19, 24, 0.62);
	color: #fff;
	font-size: 13px;
	line-height: 1.3;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	pointer-events: none;
}

.zz-nb-showcase-thumbs {
	display: grid;
	grid-template-columns: repeat(var(--zz-nb-thumb-cols), minmax(0, 1fr));
	gap: var(--zz-nb-showcase-gap);
}

.zz-nb-showcase-thumb {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 8px;
	background: none;
	aspect-ratio: 1 / 1;
	opacity: 0.62;
	cursor: pointer;
	transition:
		opacity 0.25s ease,
		border-color 0.25s ease;
}

.zz-nb-showcase-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zz-nb-showcase-thumb:hover,
.zz-nb-showcase-thumb.is-active {
	opacity: 1;
	border-color: #28458f;
}

.zz-nb-showcase-thumb:focus-visible {
	outline: 2px solid #28458f;
	outline-offset: 2px;
}

/* Thumbnails beside the main image: a fixed-width scrolling column. */
.zz-nb-thumbs-left,
.zz-nb-thumbs-right {
	flex-direction: row;
	align-items: flex-start;
}

.zz-nb-thumbs-left {
	flex-direction: row-reverse;
}

.zz-nb-thumbs-left .zz-nb-showcase-thumbs,
.zz-nb-thumbs-right .zz-nb-showcase-thumbs {
	flex: 0 0 96px;
	grid-template-columns: minmax(0, 1fr);
	max-height: calc(
		(96px * var(--zz-nb-thumb-rows)) +
		(var(--zz-nb-showcase-gap) * (var(--zz-nb-thumb-rows) - 1))
	);
	overflow-y: auto;
	scrollbar-width: thin;
}

.zz-nb-showcase-single .zz-nb-showcase-thumbs {
	display: none;
}

/* Off-screen but still in the DOM, so Elementor's lightbox collects them. */
.zz-nb-showcase-pool {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

@media ( max-width: 767px ) {
	.zz-nb-thumbs-left,
	.zz-nb-thumbs-right {
		flex-direction: column;
	}

	.zz-nb-thumbs-left .zz-nb-showcase-thumbs,
	.zz-nb-thumbs-right .zz-nb-showcase-thumbs {
		flex: 1 1 auto;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		max-height: none;
		overflow-y: visible;
	}
}

/* ----------------------------------------------------- Gallery: grid */

.zz-nb-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.zz-nb-gallery-item {
	display: block;
	overflow: hidden;
	border-radius: 14px;
	aspect-ratio: 1 / 0.75;
}

.zz-nb-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--zz-nb-ease, ease);
}

a.zz-nb-gallery-item:hover img {
	transform: scale(1.05);
}

/* -------------------------------------------------------- Editor notice */

.zz-nb-editor-notice {
	padding: 24px;
	border: 1px dashed #c9cfda;
	border-radius: 10px;
	background-color: #f6f7fa;
	color: #6e7481;
	font-size: 14px;
	text-align: center;
}

/* ------------------------------------------------------------ Responsive */

@media ( max-width: 1024px ) {
	.zz-nb-title {
		font-size: 21px;
	}
}

@media ( max-width: 767px ) {
	.zz-nb-title {
		font-size: 20px;
	}

	.zz-nb-filter {
		gap: 8px;
	}

	.zz-nb-filter-btn {
		padding: 10px 18px;
		font-size: 14px;
	}

	.zz-nb-card-overlay .zz-nb-body,
	.zz-nb-card-stacked .zz-nb-body {
		padding: 22px;
	}

	.zz-nb-arrow {
		opacity: 1;
		transform: translateY(0);
	}

	/* No hover on touch: reveal-mode content is shown at rest. */
	.zz-nb-hover-reveal .zz-nb-desc,
	.zz-nb-hover-reveal .zz-nb-features,
	.zz-nb-hover-reveal .zz-nb-cta {
		opacity: 1;
		transform: none;
	}

	.zz-nb-hover-lift:hover {
		transform: none;
	}

	.zz-nb-spec-row {
		flex-direction: column;
		gap: 4px;
	}

	.zz-nb-spec-value {
		text-align: left;
	}

	.zz-nb-specs-columns .zz-nb-spec-list {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.zz-nb-cards *,
	.zz-nb-gallery-item img {
		transition-duration: 0.01ms !important;
	}

	.zz-nb-has-zoom .zz-nb-card:hover .zz-nb-media,
	.zz-nb-hover-lift:hover {
		transform: none;
	}

	.zz-nb-hover-reveal .zz-nb-desc,
	.zz-nb-hover-reveal .zz-nb-features,
	.zz-nb-hover-reveal .zz-nb-cta {
		transform: none;
	}
}
