.b-year-footer {
    text-align: center;
    font-size: 12px;
    opacity: .8;
}

.b-year-footer__text {
    margin: 0;
}

.b-year-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.b-year-footer__logo {
    vertical-align: middle;
    transition: opacity .2s ease;
}

.b-year-footer__link:hover .b-year-footer__logo {
    opacity: .8;
}


















/**
 * Tgart — Partner Logo Carousel & Grid CSS
 *
 * Version: 2.0.1
 *
 * Changelog:
 * 2.0.1
 * - Popravljena beskonačna carousel animacija.
 * - Dodane dvije identične carousel grupe.
 * - Uklonjen prazan prostor između ponavljanja.
 * - Povećane dimenzije logotipa.
 * - Prilagođena brzina animacije.
 *
 * 2.0.0
 * - Dodan responsive grid klijenata.
 * - Zadržan carousel i oba smjera animacije.
 * - Dodan clean enterprise styling.
 * - Dodani focus state i reduced motion podrška.
 */

/* =========================================================
   ZAJEDNIČKI ELEMENTI
========================================================= */

.bplc-scroller,
.bplc-grid,
.bplc-scroller *,
.bplc-grid * {
	box-sizing: border-box;
}

.bplc-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.bplc-link,
.bplc-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.bplc-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: 0;
	object-fit: contain;
	transition:
		transform 220ms ease,
		opacity 220ms ease;
}

.bplc-link:hover .bplc-image {
	opacity: 0.9;
	transform: scale(1.04);
}

.bplc-link:focus-visible {
	outline: 3px solid rgba(225, 99, 4, 0.3);
	outline-offset: 5px;
}

.bplc-empty {
	margin: 0;
	color: #515154;
	font-size: 16px;
	line-height: 1.6;
}

/* =========================================================
   CAROUSEL
========================================================= */

.bplc-scroller {
	position: relative;
	width: 100%;
	height: 160px;
	overflow: hidden;
}

.bplc-track {
	display: flex;
	align-items: center;
	width: max-content;
	height: 100%;
	animation: bplc-scroll 45s linear infinite;
	will-change: transform;
}

.bplc-track__group {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-around;
	min-width: 100vw;
	height: 100%;
}

.bplc-scroller.is-reverse .bplc-track {
	animation-direction: reverse;
}

.bplc-scroller .bplc-item {
	flex: 0 0 auto;
	height: 100%;
	margin: 0 34px;
}

.bplc-scroller .bplc-link,
.bplc-scroller .bplc-logo {
	width: auto;
	min-width: 180px;
}

.bplc-scroller .bplc-image {
	width: auto;
	height: auto;
	max-width: 240px;
	max-height: 105px;
	object-fit: contain;
}

.bplc-scroller:hover .bplc-track {
	animation-play-state: paused;
}

@keyframes bplc-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

/* =========================================================
   OBIČNI GRID KLIJENATA
========================================================= */

.bplc-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
}

.bplc-grid .bplc-grid__item {
	position: relative;
	min-height: 150px;
	padding: 26px;
	border: 1px solid #e5e5e7;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
	transition:
		border-color 220ms ease,
		box-shadow 220ms ease,
		transform 220ms ease;
}

.bplc-grid .bplc-grid__item:hover {
	border-color: #d2d2d7;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.bplc-grid .bplc-image {
	max-width: 170px;
	max-height: 82px;
}

/* =========================================================
   OPCIONALNI POSTOJEĆI WRAPPERI
========================================================= */

.klijenti-slider {
	padding: 30px 20px;
}

.klijenti-slider-title {
	margin-bottom: 15px;
	text-align: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {
	.bplc-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.bplc-scroller {
		height: 135px;
	}

	.bplc-track {
		animation-duration: 40s;
	}

	.bplc-scroller .bplc-item {
		margin: 0 25px;
	}

	.bplc-scroller .bplc-link,
	.bplc-scroller .bplc-logo {
		min-width: 150px;
	}

	.bplc-scroller .bplc-image {
		max-width: 200px;
		max-height: 90px;
	}

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

	.bplc-grid .bplc-grid__item {
		min-height: 140px;
		padding: 22px;
	}
}

/* =========================================================
   MOBITEL
========================================================= */

@media (max-width: 767px) {
	.bplc-scroller {
		height: 110px;
	}

	.bplc-track {
		animation-duration: 32s;
	}

	.bplc-scroller .bplc-item {
		margin: 0 18px;
	}

	.bplc-scroller .bplc-link,
	.bplc-scroller .bplc-logo {
		min-width: 125px;
	}

	.bplc-scroller .bplc-image {
		max-width: 160px;
		max-height: 70px;
	}

	.bplc-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.bplc-grid .bplc-grid__item {
		min-height: 118px;
		padding: 18px;
		border-radius: 14px;
	}

	.bplc-grid .bplc-image {
		max-width: 130px;
		max-height: 64px;
	}
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
	.bplc-track {
		animation: none;
		transform: none;
	}

	.bplc-grid .bplc-grid__item,
	.bplc-image {
		transition: none;
	}
}
























/**
 * TG Art — Homepage Hero
 * Version: 1.0.0
 */

.tgart-home-hero {
	--tgart-green: #73b843;
	--tgart-green-dark: #5b9634;
	--tgart-anthracite: #202522;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: var(--tgart-hero-height, 85vh);
	overflow: hidden;
	isolation: isolate;
	background: var(--tgart-anthracite);
	color: #ffffff;
}

.tgart-home-hero__media,
.tgart-home-hero__image,
.tgart-home-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.tgart-home-hero__media {
	z-index: -3;
	overflow: hidden;
}

.tgart-home-hero__image {
	display: block;
	max-width: none;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 1s ease, transform 6s ease;
}

.tgart-home-hero__image.is-active {
	opacity: 1;
	transform: scale(1);
}

.tgart-home-hero__overlay {
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(18, 23, 20, var(--tgart-hero-overlay, .52)) 0%, rgba(18, 23, 20, var(--tgart-hero-overlay, .52)) 54%, rgba(18, 23, 20, .28) 100%),
		linear-gradient(180deg, rgba(18, 23, 20, .08), rgba(18, 23, 20, .36));
}

.tgart-home-hero--no-image::before {
	position: absolute;
	inset: 0;
	z-index: -3;
	background: linear-gradient(135deg, #202522 0%, #303a33 100%);
	content: "";
}

.tgart-home-hero__container {
	width: min(80%, 1600px);
	margin: 0 auto;
	padding: 110px 0 90px;
}

.tgart-home-hero__content {
	width: max(1600px, 80%);
}

.tgart-home-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	padding: 0;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.tgart-home-hero__eyebrow::before {
	display: block;
	width: 34px;
	height: 3px;
	background: var(--tgart-green);
	content: "";
}

.tgart-home-hero__title {
	max-width: 1600px;
	margin: 0;
	padding: 0;
	color: #ffffff !important;
	font-size: clamp(40px, 5vw, 78px);
	font-weight: 750;
	letter-spacing: -.045em;
	line-height: 1.03;
	text-wrap: balance;
}

.tgart-home-hero__excerpt {
	max-width: 1600px;
	margin: 27px 0 0;
	padding: 0;
	color: rgba(255, 255, 255, .88);
	font-size: clamp(17px, 1.45vw, 21px);
	font-weight: 450;
	line-height: 1.65;
}

.tgart-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 34px;
}

.tgart-home-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 14px 22px;
	border: 2px solid transparent;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none !important;
	transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.tgart-home-hero__button svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform .22s ease;
}

.tgart-home-hero__button:hover svg,
.tgart-home-hero__button:focus-visible svg {
	transform: translateX(3px);
}

.tgart-home-hero__button--primary {
	border-color: var(--tgart-green);
	background: var(--tgart-green);
	color: #ffffff !important;
}

.tgart-home-hero__button--primary:hover,
.tgart-home-hero__button--primary:focus-visible {
	border-color: var(--tgart-green-dark);
	background: var(--tgart-green-dark);
	color: #ffffff !important;
	transform: translateY(-2px);
}

.tgart-home-hero__button--secondary {
	border-color: rgba(255, 255, 255, .72);
	background: rgba(255, 255, 255, .08);
	color: #ffffff !important;
	backdrop-filter: blur(8px);
}

.tgart-home-hero__button--secondary:hover,
.tgart-home-hero__button--secondary:focus-visible {
	border-color: #ffffff;
	background: #ffffff;
	color: var(--tgart-anthracite) !important;
	transform: translateY(-2px);
}

.tgart-home-hero__button:focus-visible {
	outline: 3px solid rgba(115, 184, 67, .42);
	outline-offset: 4px;
}

@media (max-width: 980px) {
	.tgart-home-hero__container {
		width: 88%;
		padding: 90px 0 72px;
	}

	.tgart-home-hero__content {
		width: min(760px, 100%);
	}

	.tgart-home-hero__title {
		font-size: clamp(38px, 6.7vw, 61px);
	}
}

@media (max-width: 767px) {
	.tgart-home-hero {
		min-height: var(--tgart-hero-height-mobile, 72svh);
	}

	.tgart-home-hero__overlay {
		background: linear-gradient(90deg, rgba(18, 23, 20, var(--tgart-hero-overlay, .52)) 0%, rgba(18, 23, 20, .42) 100%);
	}

	.tgart-home-hero__container {
		width: 90%;
		padding: 78px 0 58px;
	}

	.tgart-home-hero__eyebrow {
		margin-bottom: 15px;
		font-size: 11px;
	}

	.tgart-home-hero__title {
		font-size: clamp(33px, 10vw, 48px);
		letter-spacing: -.035em;
		line-height: 1.07;
	}

	.tgart-home-hero__excerpt {
		margin-top: 20px;
		font-size: 16px;
		line-height: 1.55;
	}

	.tgart-home-hero__actions {
		gap: 10px;
		margin-top: 27px;
	}

	.tgart-home-hero__button {
		flex: 1 1 100%;
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tgart-home-hero__image,
	.tgart-home-hero__button,
	.tgart-home-hero__button svg {
		transition: none !important;
	}
}



























/**
 * TG Art — Workflow
 * Version: 1.3.1
 */

.tgart-workflow {
	--tw-green: #73b843;
	--tw-green-dark: #568f31;
	--tw-green-soft: #f0f8eb;
	--tw-text: #202522;
	--tw-muted: #69716c;
	--tw-line: #dfe5e1;
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	color: var(--tw-text);
}

.tgart-workflow,
.tgart-workflow * {
	box-sizing: border-box;
}

.tgart-workflow__container {
	width: min(92%, 1120px);
	margin: 0 auto;
}

.tgart-workflow__steps {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tgart-workflow__step {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tgart-workflow.is-scroll-enhanced .tgart-workflow__step {
	opacity: .18;
	filter: blur(2px);
	transform: translateY(26px) scale(.985);
	transition: opacity .7s ease, filter .7s ease, transform .75s cubic-bezier(.2, .75, .25, 1);
}

.tgart-workflow.is-scroll-enhanced .tgart-workflow__step.is-in-view {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0) scale(1);
}

.tgart-workflow__card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(130px, 175px) minmax(0, 1fr);
	grid-template-rows: auto 1fr auto;
	column-gap: clamp(28px, 4vw, 50px);
	min-height: 275px;
	padding: clamp(28px, 3.5vw, 42px);
	overflow: visible;
	border: 1px solid rgba(32, 37, 34, .12);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 20px 60px rgba(32, 37, 34, .08), 0 2px 8px rgba(32, 37, 34, .04);
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.tgart-workflow__card:hover {
	border-color: rgba(115, 184, 67, .55);
	box-shadow: 0 25px 70px rgba(32, 37, 34, .11);
	transform: translateY(-3px);
}

.tgart-workflow__card-top {
	display: contents;
}

.tgart-workflow__icon-wrap {
	grid-column: 1;
	grid-row: 1 / 4;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: 100%;
	aspect-ratio: 1;
	border: 1px solid rgba(115, 184, 67, .2);
	border-radius: 22px;
	background: linear-gradient(145deg, #f5faF1, #e8f4e1);
	box-shadow: inset 0 1px 0 #ffffff, 0 17px 42px rgba(115, 184, 67, .12);
}

.tgart-workflow__icon-wrap::after {
	position: absolute;
	inset: 9px;
	border: 1px solid rgba(115, 184, 67, .15);
	border-radius: 16px;
	content: "";
}

.tgart-workflow__icon {
	position: relative;
	z-index: 2;
	display: block;
	width: 70%;
	height: 70%;
	margin: 0;
	object-fit: contain;
	filter: drop-shadow(0 9px 14px rgba(32, 37, 34, .09));
}

.tgart-workflow__step-meta {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--tw-line);
}

.tgart-workflow__step-meta span {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--tw-green-dark);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .17em;
	line-height: 1;
	text-transform: uppercase;
}

.tgart-workflow__step-meta span::before {
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 99px;
	background: var(--tw-green);
	content: "";
}

.tgart-workflow__step-meta strong {
	position: relative;
	z-index: 2;
	color: var(--tw-text);
	font-size: clamp(27px, 3vw, 38px);
	font-weight: 700;
	letter-spacing: -.055em;
	line-height: .9;
}

.tgart-workflow__content {
	grid-column: 2;
	grid-row: 2;
}

.tgart-workflow__step-title {
	max-width: 720px;
	margin: 0;
	padding: 0;
	color: var(--tw-text) !important;
	font-size: clamp(27px, 3.2vw, 40px);
	font-weight: 760;
	letter-spacing: -.045em;
	line-height: 1.04;
	text-wrap: balance;
}

.tgart-workflow__description {
	max-width: 680px;
	margin: 14px 0 0;
	padding: 0;
	color: var(--tw-muted);
	font-size: clamp(14px, 1.1vw, 16px);
	line-height: 1.68;
}

.tgart-workflow__progress {
	grid-column: 2;
	grid-row: 3;
	width: 100%;
	height: 4px;
	margin-top: 23px;
	overflow: hidden;
	border-radius: 99px;
	background: #e9edeb;
}

.tgart-workflow__progress span {
	display: block;
	width: var(--tgart-step-progress, 25%);
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--tw-green-dark), var(--tw-green));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .9s cubic-bezier(.2, .75, .25, 1) .18s;
}

.tgart-workflow__step.is-in-view .tgart-workflow__progress span,
.tgart-workflow.is-static .tgart-workflow__progress span {
	transform: scaleX(1);
}

.tgart-workflow__next {
	position: absolute;
	left: 50%;
	bottom: -24px;
	z-index: 8;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 5px solid #ffffff;
	border-radius: 50%;
	background: var(--tw-green);
	color: #ffffff;
	box-shadow: 0 9px 25px rgba(115, 184, 67, .3);
	transform: translateX(-50%) rotate(90deg);
	animation: tgart-workflow-arrow 1.8s ease-in-out infinite;
}

.tgart-workflow__next svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@keyframes tgart-workflow-arrow {
	0%, 100% { margin-bottom: 0; }
	50% { margin-bottom: -5px; }
}

@media (max-width: 900px) {
	.tgart-workflow__card {
		grid-template-columns: 125px minmax(0, 1fr);
		column-gap: 26px;
		min-height: 260px;
		padding: 28px;
	}
}

@media (max-width: 767px) {
	.tgart-workflow__container {
		width: 92%;
	}

	.tgart-workflow__steps {
		gap: 23px;
	}

	.tgart-workflow__card {
		display: block;
		min-height: 0;
		padding: 23px;
		border-radius: 17px;
	}

	.tgart-workflow__icon-wrap {
		width: 88px;
		height: 88px;
		margin-bottom: 18px;
		border-radius: 18px;
	}

	.tgart-workflow__icon-wrap::after {
		inset: 8px;
		border-radius: 16px;
	}

	.tgart-workflow__step-meta {
		margin-bottom: 17px;
		padding-bottom: 12px;
	}

	.tgart-workflow__step-meta strong {
		font-size: 27px;
	}

	.tgart-workflow__step-title {
		font-size: clamp(26px, 7.5vw, 34px);
	}

	.tgart-workflow__description {
		margin-top: 12px;
		font-size: 14px;
		line-height: 1.62;
	}

	.tgart-workflow__progress {
		margin-top: 20px;
	}

	.tgart-workflow__next {
		bottom: -22px;
		width: 38px;
		height: 38px;
		border-width: 4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tgart-workflow__step {
		opacity: 1 !important;
		filter: none !important;
		transform: none !important;
		transition: none !important;
	}

	.tgart-workflow__progress span {
		transform: scaleX(1);
		transition: none;
	}

	.tgart-workflow__next {
		animation: none;
	}
}

