/*
Theme Name: Profectum Theme
Theme URI: https://profectum.krypto.events
Author: Profectum
Description: Custom theme for Profectum.
Version: 1.0.7
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: profectum-theme
*/

/* Theme styles */

:root {
	--font-sans: "Montserrat", sans-serif;
	--header-height: 135px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 500;
	color: #000;
	font-size: 25px;
	line-height: 36px;
}

h1 {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 60px;
	font-weight: 900;
	line-height: 63px;
	color: #000;
}

h2 {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 55px;
	font-weight: 900;
	line-height: 70px;
	color: #000;
}

h3 {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 43px;
	font-weight: 700;
	line-height: 52px;
	color: #000;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

p, li, body, input, textarea, select, option {
    font-family: var(--font-sans);
    font-size: 25px;
    font-weight: 500;
    line-height: 36px;
	margin: 0;
}

input::placeholder,
textarea::placeholder {
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
	opacity: 1;
}

@media (max-width: 767px) {
    p, li, body, input, textarea, select, option {
        font-family: var(--font-sans);
        font-size: 17px;
        font-weight: 500;
        line-height: 20px;
    }

	input::placeholder,
	textarea::placeholder {
		font-size: 17px;
		line-height: 20px;
	}
}

/* Main container */

.container {
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
	padding-inline: 30px;
}

/* Header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-height);
	background-color: rgba(134, 141, 7, 0.75);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin-inline: auto;
	padding-inline: 24px;
}

.site-header__logo {
	display: flex;
	flex-shrink: 0;
	line-height: 0;
}

.site-header__logo img {
	display: block;
	width: auto;
	height: 105px;
}

.site-header__nav {
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
	align-self: stretch;
	min-width: 0;
	margin-inline-start: 66px;
}

.site-header__menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	width: 100%;
	height: 100%;
	gap: 44px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-header__menu > li {
	position: relative;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.site-header__menu a {
	color: #fff;
	font-family: var(--font-sans);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.site-header__menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 100%;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible,
.site-header__menu .current-menu-item > a {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.site-header__menu > .menu-item-has-children > a::after {
	content: "";
	display: block;
	width: 9px;
	height: 12px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.69 32.36'%3E%3Cpath d='M23.69 16.18C18.3 10.78 12.91 5.39 7.51 0L0 7.51l8.67 8.67L0 24.85l7.51 7.51c5.39-5.39 10.79-10.79 16.18-16.18Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.69 32.36'%3E%3Cpath d='M23.69 16.18C18.3 10.78 12.91 5.39 7.51 0L0 7.51l8.67 8.67L0 24.85l7.51 7.51c5.39-5.39 10.79-10.79 16.18-16.18Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
	transform: rotate(90deg);
	transition: transform 0.2s ease;
}

.site-header__menu > .menu-item-has-children:hover > a::after,
.site-header__menu > .menu-item-has-children:focus-within > a::after {
	transform: rotate(-90deg);
}

.site-header__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	min-width: 260px;
	margin: 0;
	padding: 12px 0;
	list-style: none;
	background-color: #868d07;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__menu > li:last-child > .sub-menu,
.site-header__menu > li:nth-last-child(2) > .sub-menu {
	left: auto;
	right: 0;
}

.site-header__menu > li:hover > .sub-menu,
.site-header__menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.site-header__menu .sub-menu a {
	display: block;
	padding: 12px 20px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
}

.site-header__menu .sub-menu a:hover,
.site-header__menu .sub-menu a:focus-visible,
.site-header__menu .sub-menu .current-menu-item > a {
	background-color: rgba(255, 255, 255, 0.12);
}

.site-header__sub-toggle {
	display: none;
}

.site-header__burger {
	display: none;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	line-height: 0;
}

.site-header__burger-icon {
	display: block;
	width: 52px;
	height: auto;
}

.site-header__burger-icon svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.site-header__burger-icon .cls-1,
.site-header__burger-icon .cls-2 {
	stroke: currentColor;
}

@media (max-width: 1449px) {
	.site-header {
		overflow: hidden;
	}

	.site-header.is-nav-open {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		width: 100%;
		overflow: visible;
	}

	.site-header__inner {
		justify-content: space-between;
	}

	.site-header__burger {
		display: inline-flex;
		position: relative;
		z-index: 1002;
	}

	.site-header__nav {
		position: absolute;
		top: 100%;
		right: 0;
		bottom: auto;
		left: 0;
		z-index: 1001;
		display: block;
		align-self: auto;
		width: auto;
		min-width: 0;
		max-width: none;
		height: 0;
		max-height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
		border-radius: 0;
		background-color: rgba(134, 141, 7, 0.95);
		text-align: right;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: none;
		transition: opacity 0.25s ease, visibility 0.25s ease;
	}

	.site-header.is-nav-open .site-header__nav {
		position: fixed;
		top: var(--header-height);
		right: 0;
		bottom: 0;
		left: 0;
		width: auto;
		height: auto;
		max-height: none;
		padding: 24px;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.site-header__menu {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		height: auto;
		gap: 0;
	}

	.site-header__menu > li {
		display: block;
		flex: none;
		width: 100%;
	}

	.site-header__menu > li > a {
		justify-content: flex-end;
		width: 100%;
		height: auto;
		padding: 12px 0;
		text-align: right;
	}

	.site-header__menu > .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-end;
	}

	.site-header__menu > .menu-item-has-children > a {
		flex: 0 1 auto;
		width: auto;
		min-width: 0;
	}

	.site-header__menu > .menu-item-has-children > a::after {
		display: none;
	}

	.site-header__sub-toggle {
		display: inline-flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: flex-end;
		width: 16px;
		height: 44px;
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
		margin-inline-start: 8px;
		color: #fff;
		cursor: pointer;
		line-height: 0;
	}

	.site-header__sub-toggle::before {
		content: "";
		display: block;
		width: 9px;
		height: 12px;
		background-color: currentColor;
		-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.69 32.36'%3E%3Cpath d='M23.69 16.18C18.3 10.78 12.91 5.39 7.51 0L0 7.51l8.67 8.67L0 24.85l7.51 7.51c5.39-5.39 10.79-10.79 16.18-16.18Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
		mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.69 32.36'%3E%3Cpath d='M23.69 16.18C18.3 10.78 12.91 5.39 7.51 0L0 7.51l8.67 8.67L0 24.85l7.51 7.51c5.39-5.39 10.79-10.79 16.18-16.18Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
		transform: rotate(90deg);
		transition: transform 0.2s ease;
	}

	.site-header__menu > .menu-item-has-children.is-sub-open > .site-header__sub-toggle::before {
		transform: rotate(-90deg);
	}

	.site-header__menu .sub-menu {
		position: static;
		left: auto;
		right: auto;
		flex: 1 0 100%;
		min-width: 0;
		padding: 0;
		background-color: transparent;
		text-align: right;
		transform: none;
	}

	.site-header.is-nav-open .site-header__menu .sub-menu {
		display: none;
	}

	.site-header.is-nav-open .menu-item-has-children.is-sub-open > .sub-menu {
		display: flex;
		visibility: visible;
		pointer-events: auto;
		opacity: 1;
	}

	.site-header:not(.is-nav-open) .site-header__nav,
	.site-header:not(.is-nav-open) .site-header__nav *,
	.site-header:not(.is-nav-open) .site-header__menu > li:hover > .sub-menu,
	.site-header:not(.is-nav-open) .site-header__menu > li:focus-within > .sub-menu {
		pointer-events: none;
		visibility: hidden;
	}

	.site-header__menu .sub-menu a {
		width: 100%;
		padding: 8px 0;
		text-align: right;
		white-space: normal;
	}
}

/* Single post */

.profectum-post {
	padding-top: 80px;
	padding-bottom: 140px;
	background-color: #fff;
}

.profectum-post__title {
	margin: 0 0 40px;
}

.profectum-post__media {
	margin: 0 0 48px;
}

.profectum-post__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.profectum-post__media--fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
}

.profectum-post__media--fallback .profectum-post__image {
	width: auto;
	max-width: 420px;
	max-height: 520px;
	margin-inline: auto;
	object-fit: contain;
}

.profectum-post__content {
	display: flex;
	flex-direction: column;
	gap: 28px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
}

.profectum-post__content > * {
	margin: 0;
}

.profectum-post__content img {
	max-width: 100%;
	height: auto;
}

/* Main button */

.btn-main {
	--btn-main-arrow-w: 23.69px;
	--btn-main-gap: 24px;
	--btn-main-pad: 30px;
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 48px;
	padding-block: 0;
	padding-left: calc(var(--btn-main-pad) + var(--btn-main-arrow-w) + var(--btn-main-gap));
	padding-right: var(--btn-main-pad);
	border: 2px solid #fff;
	background-color: #fff;
	color: #9dae11;
	font-family: var(--font-sans);
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	transition: background-color 0.45s ease, color 0.45s ease, border-color 0.45s ease;
}

.btn-main__arrow {
	position: absolute;
	top: 50%;
	left: var(--btn-main-pad);
	display: block;
	color: inherit;
	transform: translateY(-50%);
	transition: left 0.45s ease, transform 0.45s ease, color 0.45s ease;
}

.btn-main__label {
	color: inherit;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: transform 0.45s ease, color 0.45s ease;
}

.btn-main:hover,
.btn-main:focus-visible {
	background-color: #9dae11;
	border-color: #9dae11;
	color: #fff;
}

.btn-main:hover .btn-main__arrow,
.btn-main:focus-visible .btn-main__arrow {
	left: calc(100% - var(--btn-main-pad));
	transform: translate(-100%, -50%);
}

.btn-main:hover .btn-main__label,
.btn-main:focus-visible .btn-main__label {
	transform: translateX(calc(-1 * (var(--btn-main-arrow-w) + var(--btn-main-gap))));
}

.btn-main--alt {
	border-color: #000;
	background-color: transparent;
	color: #000;
}

.btn-main--alt:hover,
.btn-main--alt:focus-visible {
	background-color: #000;
	border-color: #000;
	color: #fff;
}

.btn-main--alt-w {
	border-color: #fff;
	background-color: transparent;
	color: #fff;
}

.btn-main--alt-w:hover,
.btn-main--alt-w:focus-visible {
	background-color: #fff;
	border-color: #fff;
	color: #9dae11;
}

.btn-main--small .btn-main__label {
	font-size: 20px;
}

/* Profectum hero */

.site-main--hero {
	margin-top: calc(-1 * var(--header-height));
}

.site-main--procedure .profectum-hero__slide-img {
	object-position: center top;
}

.site-main--nas-tim .profectum-hero__slide-img {
	object-position: center top;
}

/* Hero + intro quote share the first viewport */
.homepage-first-screen {
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}

.homepage-first-screen .profectum-hero {
	flex: 1 1 auto;
	min-height: 0;
	height: auto;
}

.homepage-first-screen .intro-quote {
	flex: 0 0 auto;
}

.profectum-hero {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 100dvh;
	overflow: hidden;
	color: #fff;
}

.profectum-hero__slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.profectum-hero__slide {
	position: absolute;
	inset: 0;
	background-color: #3a4208;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	transition: opacity 0.7s ease;
}

.profectum-hero__slide.is-active {
	opacity: 1;
}

.profectum-hero__slide-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.profectum-hero__inner {
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	padding-top: calc(var(--header-height) + 48px);
	padding-bottom: 96px;
}

.profectum-hero__content {
	display: flex;
	flex-direction: column;
	gap: 48px;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	min-height: 0;
	justify-content: flex-start;
}

.profectum-hero__title {
	margin: 0;
	color: white;
	font-size: 60px;
	font-weight: 900;
	line-height: 63px;
}

.profectum-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.profectum-hero__texts {
	display: grid;
	gap: 20px;
}

.profectum-hero__list {
	margin: 0;
	padding: 0 0 0 1.2em;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 17px;
	font-weight: 500;
	line-height: 20px;
	list-style: disc;
}

.profectum-hero__list--ordered {
	list-style: decimal;
}

.profectum-hero__heading {
	margin: 0;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 17px;
	font-weight: 700;
	line-height: 20px;
}

.profectum-hero__item + .profectum-hero__item {
	margin-top: 8px;
}

.profectum-hero__quote p {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 17px;
	font-weight: 500;
	line-height: 20px;
	color: #fff;
}

.profectum-hero__texts--quote .profectum-hero__text,
.profectum-hero__quote .profectum-hero__text {
	font-style: italic;
}

.profectum-hero__texts--bigger {
	gap: 30px;
}

.profectum-hero__texts--small .profectum-hero__text,
.profectum-hero__texts--small .profectum-hero__list,
.profectum-hero__texts--small .profectum-hero__heading {
	font-size: 20px;
	line-height: 22px;
}

.profectum-hero__text--lead,
.profectum-hero__text strong {
	font-weight: 900;
}

.profectum-hero__nav {
	position: absolute;
	right: 24px;
	bottom: 48px;
	display: flex;
	align-items: center;
	gap: 27px;
}

.profectum-hero__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	line-height: 0;
	transition: color 0.2s ease;
}

.profectum-hero__nav-icon {
	display: block;
	width: 39px;
	height: auto;
}

.profectum-hero__nav-btn--prev .profectum-hero__nav-icon {
	transform: scaleX(-1);
}

.profectum-hero__nav-btn:hover,
.profectum-hero__nav-btn:focus-visible {
	color: #9dae11;
}

.profectum-hero__nav-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

/* Homepage intro quote */

.intro-quote {
	background-color: #fff;
	padding-top: 28px;
	padding-bottom: 0;
}

.intro-quote__text {
	margin: 0;
	color: #000;
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
	text-align: justify;
	text-align-last: left;
}

.intro-quote__rule {
	display: inline-block;
	width: 298px;
	height: 2px;
	margin-right: 30px;
	vertical-align: middle;
	background-color: #000;
}

.intro-quote__brand {
	font-weight: 600;
}

/* Homepage process section */

.profectum-proces {
	background-color: #fff;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 284px;
	padding-bottom: 166px;
}

.profectum-proces__inner {
	display: grid;
	grid-template-columns: 40% minmax(0, 1fr);
	gap: 92px;
	align-items: stretch;
}

.profectum-proces__left {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.profectum-proces__title {
	color: #000;
}

.profectum-proces__left .btn-main {
	margin-top: auto;
	align-self: flex-start;
}

.profectum-proces__right {
	display: grid;
	gap: 24px;
}

/* Homepage services section */

.profectum-usluge {
	background-color: #fff;
	background-position: left top;
	background-repeat: repeat-y;
	background-size: contain;
	padding-top: 155px;
	padding-bottom: 170px;
}

.profectum-usluge__title {
	margin: 0 0 82px;
	
}

.profectum-usluge--has-intro .profectum-usluge__title {
	margin-bottom: 28px;
}

.profectum-usluge__intro {
	margin: 0 0 82px;
	max-width: 920px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
}

.profectum-usluge__cards {
	display: grid;
	gap: 72px;
}

.service-card {
	--service-card-inset: 58px;
	--service-card-top: 38px;
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 96px;
	align-items: end;
	min-height: 390px;
	padding-top: var(--service-card-top);
}

.service-card__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: var(--service-card-inset);
	z-index: 0;
	background-color: #aebd3c;
}

.service-card--image-right .service-card__bg {
	right: var(--service-card-inset);
	left: 0;
}

.service-card--image-right .service-card__media {
	order: 2;
}

.service-card--image-right .service-card__content {
	order: 1;
	padding: 0px 0px 24px 58px;
}

.service-card__media,
.service-card__content {
	position: relative;
	z-index: 1;
}

.service-card__media {
	overflow: hidden;
	height: 100%;
	min-height: calc(390px - var(--service-card-top));
}

.service-card__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: calc(390px - var(--service-card-top));
	object-fit: cover;
	opacity: 0;
	transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.4s ease;
}

.service-card__image--from-left {
	transform: translateX(-80px);
}

.service-card__image--from-right {
	transform: translateX(80px);
}

.service-card.is-inview .service-card__image {
	transform: translateX(0);
	opacity: 1;
}

.service-card__content {
	display: flex;
	flex-direction: column;
	align-self: stretch;
	padding: 0px 32px 24px 0;
	color: #fff;
	opacity: 0;
	transition: opacity 1.4s ease;
}

.service-card.is-inview .service-card__content {
	opacity: 1;
	gap: 16px;
}

@media (prefers-reduced-motion: reduce) {
	.service-card__image,
	.service-card__content {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.service-card__image--placeholder {
	background-color: rgba(0, 0, 0, 0.12);
}

.service-card__title {
	margin: 0;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 900;
	line-height: 36px;
}

.service-card__title--lg {
	font-size: 43px;
	line-height: 52px;
}

.service-card__body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-card--section .service-card__content {
	gap: 24px;
}

.service-card--section {
	min-height: 0;
	align-items: center;
	column-gap: 40px;
}

.service-card--section .service-card__media {
	height: auto;
	min-height: 0;
	align-self: center;
}

.service-card--section .service-card__image {
	width: 100%;
	height: auto;
	min-height: 0;
	aspect-ratio: 578 / 362;
	object-fit: cover;
}

.service-card__action {
	margin-top: auto;
}

.service-card__action .btn-main {
	max-width: 100%;
}

.service-card__action .btn-main__label {
	white-space: normal;
}

.digitalizacija-intro {
	background-color: #fff;
	padding-top: 100px;
	padding-bottom: 120px;
}

/* Homepage Projektovanje section */

.profectum-projektovanje-section {
	position: relative;
	background-color: #1a1e22;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 140px;
	padding-bottom: 140px;
	color: #fff;
}

.profectum-projektovanje-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.35) 45%,
		rgba(0, 0, 0, 0.45) 100%
	);
	pointer-events: none;
}

.profectum-projektovanje-section__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 80px;
	align-items: stretch;
}

.profectum-projektovanje-section__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	/* max-width: 520px; */
}

.profectum-projektovanje-section__title {
	margin: 0px 0 82px;
	color: #fff;
}

.profectum-projektovanje-section__text {
	font-weight: 700;
}

.profectum-projektovanje-section__left .btn-main {
	margin-top: auto;
}

.profectum-projektovanje-section__list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-projektovanje-section__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 30px;
	font-weight: 700;
	line-height: 62px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.profectum-projektovanje-section__chevron {
	flex-shrink: 0;
	width: 26px;
	height: auto;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.profectum-projektovanje-section__list:not(:hover):not(:focus-within)
	.profectum-projektovanje-section__item:first-child
	.profectum-projektovanje-section__link,
.profectum-projektovanje-section__link:hover,
.profectum-projektovanje-section__link:focus-visible {
	color: #9dae11;
}

.profectum-projektovanje-section__list:not(:hover):not(:focus-within)
	.profectum-projektovanje-section__item:first-child
	.profectum-projektovanje-section__chevron,
.profectum-projektovanje-section__link:hover .profectum-projektovanje-section__chevron,
.profectum-projektovanje-section__link:focus-visible .profectum-projektovanje-section__chevron {
	opacity: 1;
	transform: translateX(0);
}

.profectum-projektovanje-section__link:focus-visible {
	outline: 2px solid #9dae11;
	outline-offset: 4px;
}

/* Homepage Urbanizam section */

.profectum-urbanizam-section {
	background-color: #a3ad2c;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 158px;
	padding-bottom: 168px;
}

.profectum-urbanizam-section__title {
	margin: 0 0 36px;
	color: #fff;
}

.profectum-urbanizam-section__card {
	display: grid;
	grid-template-columns: 45% 55%;
	min-height: 580px;
	overflow: hidden;
}

.profectum-urbanizam-section__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: 48px 40px 40px;
	background-color: rgba(206, 214, 126, 0.72);
}

.profectum-urbanizam-section__list {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-urbanizam-section__link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.2s ease;
}

.profectum-urbanizam-section__chevron {
	flex-shrink: 0;
	width: 26px;
	height: auto;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.profectum-urbanizam-section__list:not(:hover):not(:focus-within)
	.profectum-urbanizam-section__item:first-child
	.profectum-urbanizam-section__link,
.profectum-urbanizam-section__link:hover,
.profectum-urbanizam-section__link:focus-visible {
	color: #000;
}

.profectum-urbanizam-section__list:not(:hover):not(:focus-within)
	.profectum-urbanizam-section__item:first-child
	.profectum-urbanizam-section__chevron,
.profectum-urbanizam-section__link:hover .profectum-urbanizam-section__chevron,
.profectum-urbanizam-section__link:focus-visible .profectum-urbanizam-section__chevron {
	opacity: 1;
	transform: translateX(0);
}

.profectum-urbanizam-section__link:focus-visible {
	outline: 2px solid #000;
	outline-offset: 4px;
}

.profectum-urbanizam-section__content .btn-main {
	margin-top: 40px;
}

.profectum-urbanizam-section__media {
	min-height: 100%;
	overflow: hidden;
}

.profectum-urbanizam-section__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 580px;
	object-fit: cover;
	object-position: center;
}

/* Homepage Digitalizacija section */

.profectum-digitalizacija-section {
	background-color: #9dae11;
	background-position: top left;
	background-repeat: repeat-y;
	background-size: contain;
	padding-top: 156px;
	padding-bottom: 156px;
	color: #fff;
}

.profectum-digitalizacija-section__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-digitalizacija-section__title {
	margin: 0 0 48px;
	color: #fff;
	text-align: right;
}

.profectum-digitalizacija-section__text {
	text-align: justify;
	text-align-last: left;
}

.profectum-digitalizacija-section__action {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-top: 56px;
}

/* Homepage process steps section */

.profectum-procesrada {
	position: relative;
	isolation: isolate;
	/* background-color: #1a1a1a; */
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 150px;
	padding-bottom: 190px;
	color: #fff;
}

.profectum-procesrada::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	/* background-color: rgba(0, 0, 0, 0.45); */
}

.profectum-procesrada__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-procesrada__title {
	margin: 0 0 72px;
	color: #fff;
	/* text-align: center; */
}

.profectum-procesrada__steps {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-procesrada__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.profectum-procesrada__icon {
	display: block;
	width: 90px;
	height: 90px;
	margin-bottom: 28px;
	object-fit: contain;
}

.profectum-procesrada__step-title {
	margin: 0 0 16px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 21px;
	font-weight: 700;
	line-height: 26px;
}

.profectum-procesrada__step-text {
	margin: 0;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	line-height: 22px;
}

/* Homepage values section */

.profectum-vrednosti {
	position: relative;
	isolation: isolate;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-block: 160px;
	color: #fff;
}

.profectum-vrednosti__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.profectum-vrednosti__title {
	margin: 0 0 72px;
	color: #fff;
	text-align: center;
	max-width: 820px;
}

.profectum-vrednosti__items {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-vrednosti__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.profectum-vrednosti__icon {
	display: block;
	width: 90px;
	height: 90px;
	margin-bottom: 28px;
	object-fit: contain;
}

.profectum-vrednosti__item-title {
	margin: 0 0 16px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 21px;
	font-weight: 700;
	line-height: 26px;
}

.profectum-vrednosti__item-text {
	margin: 0;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 400;
	font-style: italic;
	line-height: 22px;
}

/* Homepage numbers section */

.profectum-numbers-section {
	position: relative;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	height: 1502px;
	background-color: #1a1e22;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0;
	color: #fff;
}

.profectum-numbers-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.profectum-numbers-section__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 0 50%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 50%;
	min-height: 0;
}

.profectum-numbers-section__title {
	margin: 0 0 72px;
	color: #fff;
	text-align: center;
}

.profectum-numbers-section__items {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}

.profectum-numbers-section__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.profectum-numbers-section__circle-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 279px;
	height: 279px;
}

.profectum-numbers-section__circle {
	display: block;
	width: 279px;
	height: 279px;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.profectum-numbers-section__item.is-animating .profectum-numbers-section__circle {
	opacity: 1;
}

.profectum-numbers-section__number {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-family: var(--font-sans);
	font-size: 52px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.profectum-numbers-section__number--digits-2 {
	font-size: 52px;
}

.profectum-numbers-section__number--digits-3 {
	font-size: 55px;
}

.profectum-numbers-section__number--digits-4 {
	font-size: 42px;
}

.profectum-numbers-section__number--digits-5,
.profectum-numbers-section__number--digits-6 {
	font-size: 42px;
}

.profectum-numbers-section__item.is-counting .profectum-numbers-section__number {
	opacity: 1;
}

.profectum-numbers-section__text {
	margin: 20px 0 0;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.profectum-numbers-section__item.is-text-visible .profectum-numbers-section__text {
	opacity: 1;
	transform: translateY(0);
}

.profectum-numbers-section__footer {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 0 50%;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50%;
	min-height: 0;
	margin-top: 0;
	padding: 0;
	background-color: rgba(134, 141, 7, 0.75);
}

.profectum-numbers-section__footer-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.profectum-numbers-section__intro {
	display: flex;
	flex-direction: column;
	gap: 1em;
	text-align: left;
}

.profectum-numbers-section__intro {
	text-align: left;
	white-space: pre-line;
}

.profectum-numbers-section__intro strong {
	font-weight: 800;
}

.profectum-numbers-section__action {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 48px;
}

/* Homepage blogs section */

.profectum-homepage-blogs {
	background-color: #fff;
	background-position: left top;
	background-repeat: repeat-y;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 160px;
}

.profectum-homepage-blogs__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 140px;
}

.profectum-homepage-blogs__intro,
.profectum-homepage-blogs__content {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-homepage-blogs__title {
	margin: 0 0 36px;
	color: #000;
}

.profectum-homepage-blogs__text + .profectum-homepage-blogs__text {
	margin-top: 28px;
}

.profectum-homepage-blogs__action {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.profectum-homepage-blogs__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 72px;
}

.profectum-homepage-blogs__item {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 320px;
	padding: 48px 40px;
	background-color: #aebd3c;
}

.profectum-homepage-blogs__placeholder {
	color: #fff;
	font-family: var(--font-sans);
	font-size: 43px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

/* Homepage contact CTA section */

.profectum-cta {
	background-color: #fff;
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 160px;
}

.profectum-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-cta__title {
	margin: 0 0 36px;
	color: #000;
}



.profectum-cta__action {
	display: flex;
	justify-content: center;
	margin-top: 64px;
}

@media (prefers-reduced-motion: reduce) {
	.profectum-numbers-section__circle {
		opacity: 1;
		mask-image: none;
		-webkit-mask-image: none;
		animation: none;
	}

	.profectum-numbers-section__number {
		opacity: 1;
	}

	.profectum-numbers-section__text {
		opacity: 1;
		transform: none;
	}
}

/* Homepage philosophy section */

.profectum-filozofija {
	background-color: #9dae11;
	background-position: top left;
	background-repeat: repeat-y;
	background-size: contain;
	padding-block: 160px;
	color: #fff;
}

.profectum-filozofija__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-filozofija__title {
	margin: 0 0 48px;
	color: #fff;
}

.profectum-filozofija__list {
	margin: 28px 0;
	padding: 0 0 0 27px;
	list-style: disc;
}

.profectum-filozofija__item + .profectum-filozofija__item {
	margin-top: 4px;
}

/* Homepage ZaÅ¡to klijenti biraju baÅ¡ nas section */

.profectum-zasto {
	background-color: #fff;
	padding-top: 120px;
	padding-bottom: 120px;
}

.profectum-zasto__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 60px;
	align-items: center;
}

.profectum-zasto__title {
	margin: 0 0 36px;
	color: #000;
}

.profectum-zasto__list {
	margin: 0;
	padding: 0 0 0 27px;
	list-style: disc;
}

.profectum-zasto__item + .profectum-zasto__item {
	margin-top: 16px;
}

.profectum-zasto__logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.profectum-zasto__logo img {
	display: block;
	width: 100%;
	max-width: 420px;
	height: auto;
}

/* Homepage O nama section */

.profectum-onama {
	background: linear-gradient(
		to bottom,
		rgb(248, 249, 220) 0,
		rgb(248, 249, 220) 392px,
		#fff 392px,
		#fff 100%
	);
	padding-block: 160px;
}

.profectum-onama__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: stretch;
	/* background-color: #fff; */
}

.profectum-onama__media {
	min-width: 0;
}

.profectum-onama__media img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}

.profectum-onama__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 28px;
	background: #fff;
}

.profectum-onama__title {
	margin: 0 0 36px;
	color: #000;
}

.profectum-onama__text strong {
	font-weight: 700;
}

.profectum-onama__quote {
	font-weight: 600;
	font-style: italic;
}

.profectum-onama__text + .profectum-onama__quote {
	margin-top: 28px;
}

.profectum-onama__quote + .profectum-onama__quote {
	margin-top: 16px;
}

/* Homepage DuÅ¡ana Topalski bio section */

.profectum-dusanat {
	background: linear-gradient(
		to bottom,
		rgb(157, 174, 17) 0,
		rgb(157, 174, 17) 392px,
		#fff 392px,
		#fff 100%
	);
	padding-block: 160px;
}

.profectum-dusanat__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, auto);
	align-items: stretch;
}

.profectum-dusanat__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 50px 28px;
	background: #fff;
}

.profectum-dusanat__title {
	margin: 0 0 28px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 30px;
	font-weight: 500;
	line-height: 39px;
}

.profectum-dusanat__title strong {
	font-weight: 900;
}

.profectum-dusanat__text + .profectum-dusanat__text {
	margin-top: 20px;
}

.profectum-dusanat__text--emphasis {
	margin-top: 28px;
}

.profectum-dusanat__action {
	margin-top: 36px;
	max-width: 100%;
}

.profectum-dusanat__action .btn-main {
	max-width: 100%;
	height: auto;
	min-height: 48px;
	padding-block: 12px;
}

.profectum-dusanat__action .btn-main__label {
	white-space: normal;
}

.profectum-dusanat__media {
	min-width: 0;
}

.profectum-dusanat__media img {
	display: block;
	width: 100%;
	max-width: 554px;
	height: auto;
}

/* Footer */

.site-footer {
	background-color: #9dae11;
	color: #fff;
	padding-block: 72px 48px;
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.site-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px 32px;
	align-items: start;
}

.site-footer__list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

a{
	color: white;
	font-weight: 500;
	text-decoration:none;
}


.site-footer__link {
	transition: color 0.3s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
	color: #000;
}

.site-footer__col--contact {
	display: grid;
	gap: 8px;
	justify-items: start;
}

.site-footer__contact-name {
	font-weight: 700;
}

.site-footer__hours {
	display: grid;
	gap: 0;
	margin-top: 10px;
}

.site-footer__hours-label,
.site-footer__hours-value {
	display: block;
}

.site-footer__logo {
	display: flex;
	margin-bottom: 16px;
	line-height: 0;
}

.site-footer__logo img {
	display: block;
	width: auto;
	height: 140px;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: #fff;
	color: #9dae11;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	opacity: 0.85;
	transform: translateY(-2px);
}

.site-footer__social-link svg {
	display: block;
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 24px 32px;
}

.site-footer__credit {
	margin: 0;
	text-align: right;
}

.site-footer__credit-link {
	color: #fff;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 32px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer__credit-link:hover,
.site-footer__credit-link:focus-visible {
	color: #000;
}

@media (max-width: 1100px) {
	.profectum-procesrada__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 32px;
	}

	.profectum-procesrada__step:last-child {
		grid-column: 1 / -1;
		max-width: 280px;
		justify-self: center;
	}

	.profectum-vrednosti__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 32px;
	}

	.profectum-vrednosti__item:last-child {
		grid-column: 1 / -1;
		max-width: 280px;
		justify-self: center;
	}

	.profectum-izabrati-profectum__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 32px;
		row-gap: 48px;
	}

	.profectum-izabrati-profectum__item,
	.profectum-izabrati-profectum__item:nth-child(4),
	.profectum-izabrati-profectum__item:nth-child(5) {
		grid-column: auto;
	}

	.profectum-izabrati-profectum__item:last-child {
		grid-column: 1 / -1;
		max-width: 320px;
		justify-self: center;
	}

	.profectum-icon-cards__item {
		flex-basis: calc(50% - 16px);
		max-width: calc(50% - 16px);
	}

	.profectum-numbers-section__items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 40px 28px;
	}

	.profectum-numbers-section__circle-wrap,
	.profectum-numbers-section__circle {
		width: 220px;
		height: 220px;
	}

	.profectum-numbers-section__number {
		font-size: 42px;
	}

	.profectum-numbers-section__number--digits-3 {
		font-size: 36px;
	}

	.profectum-numbers-section__number--digits-4 {
		font-size: 30px;
	}

	.profectum-numbers-section__number--digits-5,
	.profectum-numbers-section__number--digits-6 {
		font-size: 24px;
	}

	.site-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 40px;
	}

	.site-footer__credit {
		text-align: right;
	}
}

/* Homepage Elaborati section */

.profectum-elaborati-section {
	background-color: #fff;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 156px;
	padding-bottom: 174px;
}

.profectum-elaborati-section__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profectum-elaborati-section__title {
	margin: 0 0 74px;
	color: #000;
}

.profectum-elaborati-section__nav {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px 80px;
	width: 100%;
}

.profectum-elaborati-section__list {
	display: grid;
	align-content: start;
	gap: 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-elaborati-section__link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.profectum-elaborati-section__chevron {
	flex-shrink: 0;
	width: 26px;
	height: auto;
	color: #9dae11;
	transition: color 0.2s ease;
}

.profectum-elaborati-section__link:hover,
.profectum-elaborati-section__link:focus-visible {
	color: #9dae11;
}

.profectum-elaborati-section__link:focus-visible {
	outline: 2px solid #9dae11;
	outline-offset: 4px;
}

.profectum-elaborati-section__action {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-top: 131px;
}

/* Projektovanje â€” Kako izgleda proces projektovanja */

.profectum-proces-projektovanja {
	position: relative;
	background-color: #1a1e22;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 140px;
	padding-bottom: 140px;
	color: #fff;
}

.profectum-proces-projektovanja::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.35) 45%,
		rgba(0, 0, 0, 0.45) 100%
	);
	pointer-events: none;
}

.profectum-proces-projektovanja__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 80px;
	row-gap: 40px;
	align-items: stretch;
}

.profectum-proces-projektovanja__left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profectum-proces-projektovanja__title {
	margin: 0 0 48px;
	color: #fff;
}

.profectum-proces-projektovanja__text + .profectum-proces-projektovanja__text {
	margin-top: 28px;
}

.profectum-proces-projektovanja__right {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profectum-proces-projektovanja__intro {
	margin: 0 0 28px;
	font-weight: 700;
}

.profectum-proces-projektovanja__note {
	grid-column: 1 / -1;
	margin: 0;
	padding-top: 0;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
}

.profectum-proces-projektovanja__list {
	display: grid;
	align-content: start;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-proces-projektovanja__item {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
}

.profectum-proces-projektovanja__chevron {
	flex-shrink: 0;
	width: 22px;
	height: auto;
	color: #9dae11;
}

.profectum-proces-projektovanja__label {
	color: inherit;
}

/* Projektovanje â€” Za koje vrste objekata radimo projektovanje */

.profectum-vrste-objekata {
	position: relative;
	background-color: #fff;
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 140px;
	color: #000;
}

.profectum-vrste-objekata__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profectum-vrste-objekata__title {
	margin: 0 0 36px;
	max-width: 18ch;
	color: #000;
}

.profectum-vrste-objekata__intro {
	margin: 0 0 36px;
	font-weight: 700;
}

.profectum-vrste-objekata__list {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-rows: repeat(4, auto);
	grid-auto-flow: column;
	column-gap: 48px;
	row-gap: 8px;
	width: 100%;
	max-width: 980px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-vrste-objekata__item {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.4;
}

.profectum-vrste-objekata__chevron {
	flex-shrink: 0;
	width: 22px;
	height: auto;
	color: #9dae11;
}

.profectum-vrste-objekata__label {
	color: inherit;
}

/* Projektovanje â€” ZaÅ¡to izabrati Profectum za projektovanje */

.profectum-izabrati-profectum {
	position: relative;
	background-color: #fff;
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 140px;
	color: #000;
}

.profectum-izabrati-profectum__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profectum-izabrati-profectum__title {
	margin: 0 0 28px;
	color: #000;
}

.profectum-izabrati-profectum__intro {
	margin: 0 0 72px;
}

.profectum-izabrati-profectum__items {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	column-gap: 40px;
	row-gap: 64px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-izabrati-profectum__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-column: span 2;
	text-align: center;
}

.profectum-izabrati-profectum__item:nth-child(4) {
	grid-column: 2 / span 2;
}

.profectum-izabrati-profectum__item:nth-child(5) {
	grid-column: 4 / span 2;
}

.profectum-izabrati-profectum__icon {
	display: block;
	width: auto;
	max-width: 180px;
	height: 90px;
	margin-bottom: 28px;
	object-fit: contain;
}

.profectum-izabrati-profectum__item-title {
	margin: 0 0 16px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 21px;
	font-weight: 700;
	line-height: 26px;
}

.profectum-izabrati-profectum__item-text {
	margin: 0;
	color: #000;
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 500;
	line-height: 25px;
}

/* FAQ accordion */

.profectum-faq {
	position: relative;
	background-color: #fff;
	background-position: left top;
	background-repeat: repeat-y;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 140px;
	color: #000;
}

.profectum-faq__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profectum-faq__title {
	margin: 0 0 64px;
	color: #000;
}

.profectum-faq__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.profectum-faq__item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-faq__heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.profectum-faq__trigger {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	margin: 0;
	padding: 18px 24px;
	border: 2px solid #000;
	background: transparent;
	color: #4d4d4d;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: color 0.25s ease, border-color 0.25s ease;
}

.profectum-faq__trigger:hover,
.profectum-faq__trigger:focus-visible {
	color: #000;
}

.profectum-faq__trigger:focus-visible {
	outline: 2px solid #9dae11;
	outline-offset: 3px;
}

.profectum-faq__chevron {
	flex-shrink: 0;
	width: 20px;
	height: auto;
	color: #000;
	transform: rotate(0deg);
	transition: transform 0.35s ease;
}

.profectum-faq__item.is-open .profectum-faq__chevron {
	transform: rotate(90deg);
}

.profectum-faq__question {
	flex: 1 1 auto;
	min-width: 0;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 32px;
}

.profectum-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
}

.profectum-faq__item.is-open .profectum-faq__panel {
	grid-template-rows: 1fr;
}

.profectum-faq__panel-inner {
	overflow: hidden;
	min-height: 0;
}

.profectum-faq__answer {
	padding-top: 18px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
}

.profectum-faq__answer p {
	margin: 0;
}

.profectum-faq__answer p + p {
	margin-top: 12px;
}

@media (prefers-reduced-motion: reduce) {
	.profectum-faq__trigger,
	.profectum-faq__chevron,
	.profectum-faq__panel {
		transition: none;
	}
}

/* Projektovanje â€” ZaÅ¡to je pravilno projektovanje kljuÄno */

.profectum-pravilno-projektovanje {
	position: relative;
	background-color: #9dae11;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 140px;
	padding-bottom: 140px;
	color: #fff;
}

.profectum-pravilno-projektovanje__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.profectum-pravilno-projektovanje__title {
	margin: 0 0 36px;
	color: #fff;
}

.profectum-pravilno-projektovanje__text {
	font-weight: 700;
}

.profectum-pravilno-projektovanje__text + .profectum-pravilno-projektovanje__text {
	margin-top: 8px;
}

.profectum-pravilno-projektovanje__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	width: 100%;
	margin-top: 48px;
	overflow: hidden;
}

.profectum-pravilno-projektovanje__list-wrap {
	display: flex;
	align-items: center;
	background-color: #c5d18a;
	padding: 48px 40px;
}

.profectum-pravilno-projektovanje__list {
	display: grid;
	align-content: start;
	gap: 28px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-pravilno-projektovanje__item {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
}

.profectum-pravilno-projektovanje__chevron {
	flex-shrink: 0;
	width: 18px;
	height: auto;
	color: #000000;
}

.profectum-pravilno-projektovanje__label {
	color: inherit;
}

.profectum-pravilno-projektovanje__media {
	position: relative;
	margin: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.profectum-pravilno-projektovanje__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profectum-pravilno-projektovanje__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 28px 32px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.45;
}

/* Reusable basic content section */

.profectum-basic-section {
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 160px;
	overflow: hidden;
}

.profectum-basic-section--black {
	background-color: #fff;
	color: #000;
}

.profectum-basic-section--white {
	background-color: #9dae11;
	color: #fff;
}

.profectum-basic-section--green-box {
	background-color: #fff;
}

.profectum-basic-section--green-box .profectum-basic-section__inner {
	background-color: #9dae11;
	color: #fff;
	padding-block: 48px;
	padding-inline: 48px;
}

.profectum-basic-section__heading-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	margin: 0 0 48px;
}

.profectum-basic-section__heading-row .profectum-basic-section__title {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
}

.profectum-basic-section__logo {
	display: block;
	flex: 0 0 182px;
	width: 182px;
	height: auto;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
}

.profectum-basic-section__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-basic-section--narrow .profectum-basic-section__title,
.profectum-basic-section--narrow .profectum-basic-section__body,
.profectum-basic-section--narrow .profectum-basic-section__action {
	max-width: 900px;
}

.profectum-basic-section__title {
	margin: 0 0 48px;
	color: inherit;
}

.profectum-basic-section h3 {
	color: inherit;
}

.profectum-basic-section__body {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.profectum-basic-section__text {
	color: inherit;
}

.profectum-basic-section__text--bold {
	font-weight: 700;
}

.profectum-basic-section__text--italic {
	font-style: italic;
}

.profectum-basic-section__text strong {
	font-weight: 700;
}

.profectum-basic-section__body > .profectum-basic-section__title {
	margin: 52px 0 20px;
}

.profectum-basic-section__block {
	display: flex;
	flex-direction: column;
}

.profectum-basic-section__heading {
	margin: 0;
	color: inherit;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 700;
	line-height: 36px;
}

.profectum-basic-section__list {
	margin: 0;
	padding: 0 0 0 27px;
	list-style: disc;
}

.profectum-basic-section__list--ordered {
	list-style: decimal;
}

.profectum-basic-section__item {
	color: inherit;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
}

.profectum-basic-section__item + .profectum-basic-section__item {
	margin-top: 4px;
}

.profectum-page__content > * {
	margin: 0;
}

.profectum-page__content h2,
.profectum-page__content h3,
.profectum-page__content h4 {
	color: inherit;
}

.profectum-page__content ul,
.profectum-page__content ol {
	padding: 0 0 0 27px;
}

.profectum-page__content img,
.profectum-page__content figure {
	max-width: 100%;
	height: auto;
}

.profectum-page__content a {
	color: inherit;
}

.profectum-basic-section__action {
	margin-top: 48px;
}

.profectum-basic-section__action--center {
	display: flex;
	justify-content: center;
}

.profectum-basic-section--split .profectum-basic-section__inner {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	grid-template-areas:
		"title body"
		"title action";
	column-gap: 40px;
	row-gap: 0;
	align-items: start;
}

.profectum-basic-section--split .profectum-basic-section__title {
	grid-area: title;
	margin: 0;
}

.profectum-basic-section--split .profectum-basic-section__body {
	grid-area: body;
}

.profectum-basic-section--split .profectum-basic-section__action {
	grid-area: action;
	margin-top: 36px;
	justify-self: start;
}

/* Reusable icon cards section */

.profectum-icon-cards {
	background-color: #fff;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 160px;
	color: #000;
}

.profectum-icon-cards__inner {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.profectum-icon-cards__title {
	margin: 0 0 72px;
	color: #000;
	text-align: center;
}

.profectum-icon-cards__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 64px 32px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-icon-cards__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 calc(25% - 24px);
	max-width: calc(25% - 24px);
	text-align: center;
}

.profectum-icon-cards__icon {
	display: block;
	width: auto;
	max-width: 100%;
	height: 190px;
	margin-bottom: 28px;
	object-fit: contain;
}

.profectum-icon-cards__item-title {
	margin: 0 0 16px;
	color: #000;
	font-family: var(--font-sans);
	font-size: 21px;
	font-weight: 700;
	line-height: 25px;
}

.profectum-icon-cards__item-text {
	margin: 0;
	color: #000;
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 500;
	line-height: 25px;
}

.profectum-icon-cards__action {
	margin-top: auto;
	padding-top: 28px;
}

.profectum-icon-cards--white {
	background-color: #9dae11;
	color: #fff;
}

.profectum-icon-cards--white .profectum-icon-cards__title {
	color: #fff;
	text-align: left;
}

.profectum-icon-cards--white .profectum-icon-cards__item-title,
.profectum-icon-cards--white .profectum-icon-cards__item-text {
	color: #fff;
}

/* Reusable text + image split section */

.profectum-text-image {
	background-color: #fff;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 160px;
	color: #000;
}

.profectum-text-image__inner {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	gap: 40px;
	align-items: stretch;
}

.profectum-text-image--image-left .profectum-text-image__inner {
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.profectum-text-image--image-left .profectum-text-image__content {
	order: 2;
}

.profectum-text-image__content {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 0;
}

.profectum-text-image__title {
	margin: 0 0 40px;
	color: #000;
}

.profectum-text-image__title a {
	color: inherit;
	text-decoration: none;
}

.profectum-text-image__title a:hover,
.profectum-text-image__title a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.profectum-text-image__body {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.profectum-text-image__text {
	margin: 0;
	color: #000;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
}

.profectum-text-image__text--bold {
	font-weight: 700;
}

.profectum-text-image__list {
	margin: 0;
	padding: 0 0 0 27px;
	list-style: disc;
}

.profectum-text-image__item {
	color: #000;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
}

.profectum-text-image__item + .profectum-text-image__item {
	margin-top: 4px;
}

.profectum-text-image__media {
	min-width: 0;
	overflow: hidden;
}

.profectum-text-image__image-link {
	display: block;
	height: 100%;
}

.profectum-text-image__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.profectum-text-image--fallback-media .profectum-text-image__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
	background-color: #000;
}

.profectum-text-image--fallback-media .profectum-text-image__image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.profectum-text-image--fallback-media .profectum-text-image__image {
	width: auto;
	height: auto;
	max-width: 70%;
	max-height: 420px;
	object-fit: contain;
}

.profectum-blog-pagination {
	padding: 0 30px 120px;
	background-color: #fff;
}

.profectum-blog-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 auto;
	padding: 0;
	max-width: 1300px;
	list-style: none;
}

.profectum-blog-pagination .page-numbers li {
	margin: 0;
}

.profectum-blog-pagination a.page-numbers,
.profectum-blog-pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	padding: 0 16px;
	border: 2px solid #000;
	color: #000;
	font-family: var(--font-sans);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}

.profectum-blog-pagination a.page-numbers:hover,
.profectum-blog-pagination a.page-numbers:focus-visible,
.profectum-blog-pagination span.page-numbers.current {
	background-color: #9dae11;
	border-color: #9dae11;
	color: #fff;
}

.profectum-text-image--framed .profectum-text-image__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-areas:
		"title title"
		"lead lead"
		"body media";
	column-gap: 48px;
	row-gap: 28px;
	align-items: start;
}

.profectum-text-image--framed .profectum-text-image__title {
	grid-area: title;
	margin-bottom: 0;
}

.profectum-text-image--framed .profectum-text-image__lead {
	grid-area: lead;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.profectum-text-image--framed .profectum-text-image__body {
	grid-area: body;
}

.profectum-text-image--framed .profectum-text-image__media,
.profectum-text-image--offset .profectum-text-image__media {
	--service-card-inset: 58px;
	--service-card-top: 38px;
	position: relative;
	overflow: visible;
	background-color: transparent;
	padding-top: var(--service-card-top);
	padding-bottom: var(--service-card-top);
}

.profectum-text-image--framed .profectum-text-image__media {
	grid-area: media;
}

.profectum-text-image--framed .profectum-text-image__media-bg,
.profectum-text-image--offset .profectum-text-image__media-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: var(--service-card-inset);
	z-index: 0;
	background-color: #aebd3c;
}

.profectum-text-image--framed .profectum-text-image__image,
.profectum-text-image--offset .profectum-text-image__image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.profectum-text-image--offset.profectum-text-image--image-left .profectum-text-image__inner {
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	column-gap: 48px;
	row-gap: 48px;
	align-items: start;
}

.profectum-text-image--align-right .profectum-text-image__content {
	text-align: right;
	align-items: flex-end;
}

.profectum-text-image__content .profectum-text-image__action {
	margin-top: auto;
	padding-top: 36px;
}

.profectum-text-image__inner > .profectum-text-image__action {
	grid-column: 1 / -1;
	order: 3;
	display: flex;
	justify-content: flex-start;
}

.profectum-text-image--blog .profectum-text-image__inner,
.profectum-text-image--blog.profectum-text-image--image-left .profectum-text-image__inner {
	gap: 80px;
}

.profectum-text-image--dusana-intro .profectum-text-image__inner {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
}

.profectum-text-image--dusana-intro .profectum-text-image__image {
	height: auto;
	object-fit: contain;
	object-position: center top;
}

/* Staggered credential cards */

.profectum-staggered-cards {
	background-color: #fff;
	overflow-x: hidden;
	padding-top: 140px;
	padding-bottom: 160px;
}

.profectum-staggered-cards__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-staggered-cards__item {
	position: relative;
	z-index: 0;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(140px, 1fr) minmax(0, 2fr);
	grid-template-areas: "icon body";
	column-gap: 48px;
	row-gap: 28px;
	align-items: center;
	width: 100%;
	padding: 48px 40px;
	min-height: 420px;
}

.profectum-staggered-cards__item::before,
.profectum-staggered-cards__item::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
}

.profectum-staggered-cards__item::before {
	z-index: -2;
}

.profectum-staggered-cards__item::after {
	z-index: -1;
}

.profectum-staggered-cards__item--end {
	color: #fff;
}

.profectum-staggered-cards__item--end::before {
	left: calc(50% - 50vw);
	right: 0;
	background-color: #9dae11;
}

.profectum-staggered-cards__item--end::after {
	display: none;
}

.profectum-staggered-cards__item--start {
	--band-pad: 28px;
	color: #000;
	grid-template-columns: minmax(0, 2fr) minmax(140px, 1fr);
	grid-template-areas: "body icon";
	padding-block: calc(var(--band-pad) + 48px);
}

.profectum-staggered-cards__item--start::before {
	left: calc(50% - 50vw);
	right: calc(50% - 50vw);
	background-color: #9dae11;
}

.profectum-staggered-cards__item--start::after {
	top: var(--band-pad);
	bottom: var(--band-pad);
	left: 0;
	right: calc(50% - 50vw);
	background-color: #fff;
}

.profectum-staggered-cards__icon {
	grid-area: icon;
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	margin-inline: auto;
	object-fit: contain;
}

.profectum-staggered-cards__item--end .profectum-staggered-cards__icon {
	filter: brightness(0) invert(1);
}

.profectum-staggered-cards__item--start .profectum-staggered-cards__icon {
	filter: brightness(0);
}

.profectum-staggered-cards__body {
	grid-area: body;
	min-width: 0;
}

.profectum-staggered-cards__title {
	margin: 0 0 20px;
	color: inherit;
	font-family: var(--font-sans);
	font-size: 43px;
	font-weight: 700;
	line-height: 52px;
}

.profectum-staggered-cards__items {
	margin: 0;
	padding: 0 0 0 27px;
	list-style: disc;
}

.profectum-staggered-cards__line {
	color: inherit;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
}

.profectum-staggered-cards__line + .profectum-staggered-cards__line {
	margin-top: 8px;
}

/* Procedure cards */

.profectum-procedure-cards {
	background-color: #fff;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 140px;
	padding-bottom: 160px;
}

.profectum-procedure-cards__title {
	margin: 0 0 72px;
	color: #000;
}

.profectum-procedure-cards__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.profectum-procedure-cards__item {
	--cut: 55px;
	position: relative;
	z-index: 0;
	isolation: isolate;
	display: grid;
	column-gap: 48px;
	row-gap: 28px;
	align-items: center;
	padding: 48px 40px;
	color: #fff;
}

.profectum-procedure-cards__item::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	background-color: #9dae11;
}

.profectum-procedure-cards__item--odd {
	grid-template-columns: minmax(140px, 1fr) minmax(0, 2fr);
	grid-template-areas: "icon body";
	padding-left: calc(var(--cut) + 40px);
}

.profectum-procedure-cards__item--odd::before {
	left: var(--cut);
	right: 0;
}

.profectum-procedure-cards__item--even {
	grid-template-columns: minmax(0, 2fr) minmax(140px, 1fr);
	grid-template-areas: "body icon";
	padding-right: calc(var(--cut) + 40px);
}

.profectum-procedure-cards__item--even::before {
	left: 0;
	right: var(--cut);
}

.profectum-procedure-cards__icon {
	grid-area: icon;
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	margin-inline: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.profectum-procedure-cards__body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.profectum-procedure-cards__heading {
	margin: 0;
	color: inherit;
	font-size: 25px;
	font-weight: 900;
	line-height: 36px;
}

/* O nama founder section */

.profectum-osnivacica {
	background-color: #fff;
	padding-top: 140px;
	padding-bottom: 160px;
}

.profectum-osnivacica__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	grid-template-areas:
		"title title"
		"content media";
	column-gap: 48px;
	row-gap: 40px;
	align-items: stretch;
}

.profectum-osnivacica__title {
	grid-area: title;
	margin: 0;
	color: #000;
}

.profectum-osnivacica__content {
	grid-area: content;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.profectum-osnivacica__text {
	margin: 0;
	color: #000;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 36px;
}

.profectum-osnivacica__text + .profectum-osnivacica__text {
	margin-top: 28px;
}

.profectum-osnivacica__text strong {
	font-weight: 700;
}

.profectum-osnivacica__text--quote {
	font-style: italic;
}

.profectum-osnivacica__logo {
	align-self: center;
	margin-top: auto;
	padding-top: 48px;
	width: 100%;
	max-width: 420px;
}

.profectum-osnivacica__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.profectum-osnivacica__action {
	align-self: center;
	margin-top: 48px;
}

.profectum-osnivacica__media {
	grid-area: media;
	min-width: 0;
	overflow: hidden;
}

.profectum-osnivacica__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Team members */

.profectum-team {
	background-color: #fff;
	background-position: left top;
	background-repeat: repeat-y;
	background-size: contain;
	padding-top: 390px;
	padding-bottom: 195px;
	overflow-x: clip;
}

.profectum-team-member {
	position: relative;
	z-index: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	align-items: start;
	padding: 0;
	color: #000;
}

.profectum-team-member::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: -195px;
	left: 50%;
	width: 100vw;
	height: 390px;
	transform: translateX(-50%);
	background-color: #9dae11;
	pointer-events: none;
}

.profectum-team-member::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: #fff;
	pointer-events: none;
}

.profectum-team-member > * {
	position: relative;
	z-index: 2;
}

.profectum-team-member--image-right {
	grid-template-areas: "content media";
}

.profectum-team-member--image-left {
	grid-template-areas: "media content";
}

.profectum-team-member + .profectum-team-member {
	margin-top: 195px;
}

.profectum-team-member__media {
	grid-area: media;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.profectum-team-member__content {
	grid-area: content;
	min-width: 0;
	padding: 32px;
}

.profectum-team-member__image {
	display: block;
	width: 100%;
	height: auto;
}

.profectum-team-member__name {
	margin: 0 0 12px;
}

.profectum-team-member__description {
	margin-top: 20px;
}

.profectum-team-member__description > *:first-child {
	margin-top: 0;
}


.profectum-team-member__description em {
	font-style: italic;
}

.profectum-team-member__description strong {
	font-weight: 700;
}

.profectum-team-member__description p + p {
	margin-top: 20px;
}

.profectum-team-member__description h3 {
	margin: 28px 0 16px;
	font-size: 30px;
	font-weight: 700;
	line-height: 39px;
}

.profectum-team-member__description ul,
.profectum-team-member__description ol {
	margin: 0;
	padding: 0 0 0 27px;
}

.profectum-team-member__description li + li {
	margin-top: 8px;
}

.profectum-team-member__quote {
	margin: 24px 0 0;
	padding: 0;
	border: 0;
	font-style: italic;
}

.profectum-team-member__quote p::before {
	content: "\201C";
}

.profectum-team-member__quote p::after {
	content: "\201D";
}

.profectum-team-member__action {
	margin-top: 32px;
	max-width: 100%;
}

.profectum-team-member__action .btn-main {
	max-width: 100%;
}

/* Media + text split section */

.profectum-media-text {
	background-position: left top;
	background-repeat: repeat-y;
	background-size: contain;
	padding-top: 100px;
	padding-bottom: 100px;
}

.profectum-media-text--green {
	background-color: #9dae11;
	color: #fff;
}

.profectum-media-text--white {
	background-color: #fff;
	color: #000;
}

.profectum-media-text__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	grid-template-areas:
		"content media"
		"action action";
	gap: 40px 72px;
	align-items: start;
}

.profectum-media-text--image-left .profectum-media-text__inner {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	grid-template-areas:
		"media content"
		"action action";
}

.profectum-media-text__content {
	grid-area: content;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.profectum-media-text--image-left .profectum-media-text__content {
	align-items: flex-end;
	text-align: right;
}

.profectum-media-text__title {
	margin: 0 0 36px;
	color: inherit;
	font-weight: 900;
}

.profectum-media-text__action {
	grid-area: action;
	display: flex;
	width: 100%;
}



.profectum-media-text__action .btn-main {
	max-width: 100%;
	justify-content: flex-start;
}

.profectum-media-text__action .btn-main__label {
	white-space: normal;
}

.profectum-media-text__media {
	grid-area: media;
	min-width: 0;
	overflow: hidden;
}

.profectum-media-text__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.4s ease;
}

.profectum-media-text__image--from-left {
	transform: translateX(-80px);
}

.profectum-media-text__image--from-right {
	transform: translateX(80px);
}

.profectum-media-text.is-inview .profectum-media-text__image {
	transform: translateX(0);
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.profectum-media-text__image {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.profectum-media-text__image--placeholder {
	background-color: rgba(0, 0, 0, 0.12);
}


.site-main--kontakt {
	background-color: #fff;
}

.kontakt {
	position: relative;
	overflow: hidden;
	background-color: #fff;
	padding-block: 48px 80px;
}

.kontakt__logo {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	display: block;
	width: 100%;
	max-width: 1274px;
	height: auto;
	pointer-events: none;
	user-select: none;
}

.kontakt__inner {
	position: relative;
	z-index: 1;
}

.kontakt__title {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.kontakt__info {
	margin: 0 0 40px;
}

.kontakt__info-name {
	margin: 0 0 8px;
	font-family: var(--font-sans);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.3;
	color: #000;
}

.site-main--kontakt .kontakt__info-name {
	font-weight: 700;
}

.kontakt__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 36px;
	padding: 0;
	list-style: none;
}

.kontakt__social .site-footer__social-link {
	background-color: #9dae11;
	color: #fff;
	box-shadow: none;
}

.kontakt__social .site-footer__social-link:hover,
.kontakt__social .site-footer__social-link:focus-visible {
	opacity: 1;
	background-color: #000;
	color: #fff;
}

.kontakt__link {
	color: inherit;
	text-decoration: none;
}

.kontakt__link:hover,
.kontakt__link:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.kontakt__notice {
	margin: 0 0 24px;
	padding: 14px 18px;
	border: 2px solid currentColor;
	font-family: var(--font-sans);
	font-size: 25px;
	font-weight: 500;
	line-height: 1.4;
}

.kontakt__notice--success {
	color: #5a6a00;
	border-color: #9dae11;
}

.kontakt__notice--error {
	color: #b00020;
	border-color: #b00020;
}

.kontakt__form-wrap {
	width: 100%;
	max-width: none;
}

.kontakt-form {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	max-width: none;
}

.kontakt-form .cmb-row {
	display: block;
	margin: 0 0 22px;
	padding: 0;
	border: 0;
}

.kontakt-form .cmb-th,
.kontakt-form .cmb-td {
	display: block;
	float: none;
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
}

.kontakt-form .cmb-th {
	margin-bottom: 8px;
}

.kontakt-form .cmb-th label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 500;
	color: #000;
}

.kontakt-form .cmb-th label::before {
	content: "";
	display: inline-block;
	flex-shrink: 0;
	width: 14px;
	height: 19px;
	background-color: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.69 32.36'%3E%3Cpath d='M23.69,16.18C18.3,10.78,12.91,5.39,7.51,0L0,7.51l8.67,8.67L0,24.85l7.51,7.51c5.39-5.39,10.79-10.79,16.18-16.18Z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.69 32.36'%3E%3Cpath d='M23.69,16.18C18.3,10.78,12.91,5.39,7.51,0L0,7.51l8.67,8.67L0,24.85l7.51,7.51c5.39-5.39,10.79-10.79,16.18-16.18Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

p.kontakt__info-line {
    margin-bottom: 12px;
}

.kontakt-form .regular-text,
.kontakt-form input[type="text"],
.kontakt-form input[type="email"],
.kontakt-form select,
.kontakt-form textarea {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 12px 14px;
	border: 2px solid #000;
	border-radius: 0;
	background: #fff;
	color: #000;
	font-family: var(--font-sans);
	box-shadow: none;
	outline: none;
	appearance: none;
}

.kontakt-form select {
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
	cursor: pointer;
}

.kontakt-form textarea {
	min-height: 180px;
	resize: vertical;
}

.kontakt-form .regular-text::placeholder,
.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
	color: #777;
	opacity: 1;
}

.kontakt-form .regular-text:focus,
.kontakt-form input[type="text"]:focus,
.kontakt-form input[type="email"]:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
	border-color: #9dae11;
	outline: 2px solid #9dae11;
	outline-offset: 0;
}

.kontakt-form__submit {
	display: inline-flex;
	width: 100%;
	max-width: none;
	margin: 40px 0 0;
	justify-content: center;
	padding-left: var(--btn-main-pad);
	padding-right: var(--btn-main-pad);
}

.kontakt-form__submit .btn-main__label {
	font-weight: 800;
}

.kontakt-form__submit:hover .btn-main__label,
.kontakt-form__submit:focus-visible .btn-main__label {
	transform: none;
}

.kontakt-form .cmb-row:after,
.kontakt-form .cmb2-wrap:after,
.kontakt-form .cmb2-metabox:after {
	display: none;
}

.kontakt-form .cmb2-wrap,
.kontakt-form .cmb2-metabox,
.kontakt-form .cmb-field-list {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	max-width: none;
	background: transparent;
	box-shadow: none;
}

.kontakt__map {
	margin-top: 56px;
	width: 100%;
	max-width: none;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	padding: 20px;
	background-color: #9dae11;
	border: 0;
	box-sizing: border-box;
}

.kontakt__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background-color: #fff;
}

@media (max-width: 767px) {
	:root {
		--header-height: 100px;
	}
	.service-card__bg {
		left: 0;
	}

	.service-card--image-right .service-card__content {
		padding: 28px 16px 32px;
	}

	.profectum-projektovanje-section__title {
		margin-bottom: 24px;
	}

	.profectum-projektovanje-section__chevron {
		width: 16px;
	}

	.profectum-urbanizam-section__chevron {
		width: 16px;
	}

	.profectum-elaborati-section__chevron {
		width: 16px;
	}

	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	ul.site-footer__social {
		justify-content: center;
}

	.site-header__inner {
		padding-inline: 16px;
	}

	.site-header__logo img {
		height: 80px;
	}

	.site-header__burger-icon {
		width: 40px;
	}

	.homepage-first-screen {
		display: block;
		min-height: 0;
	}

	.homepage-first-screen .profectum-hero {
		flex: none;
		min-height: 100dvh;
		height: auto;
	}

	h1,
	.profectum-hero__title {
		font-size: 30px;
		line-height: 36px;
	}

	.btn-main {
		--btn-main-arrow-w: 14px;
		--btn-main-gap: 12px;
		--btn-main-pad: 16px;
		max-width: 100%;
		height: auto;
		min-height: 36px;
		margin-top: 16px;
		padding-block: 10px;
	}

	.btn-main__arrow {
		width: 14px;
		height: auto;
	}

	.btn-main__label {
		font-size: 16px;
		line-height: 1.2;
		white-space: normal;
		text-align: left;
		min-width: 0;
	}

	.btn-main--small .btn-main__label {
		font-size: 14px;
	}

	.profectum-pattern-bg,
	[style*="Pattern za pozadinu fix"],
	[style*="Pattern%20za%20pozadinu%20fix"] {
		background-size: 300% !important;
	}

	[style*="3d logo pozadina"],
	[style*="3d%20logo%20pozadina"],
	[style*="3d logo BTM"],
	[style*="3d%20logo%20BTM"] {
		background-size: 150% auto !important;
	}

	h3 {
		font-size: 24px;
		line-height: 30px;
	}

	.container {
		padding-inline: 16px;
	}

	.profectum-hero__nav {
		right: 20px;
		bottom: 28px;
	}

	.profectum-hero__nav-icon {
		width: 28px;
	}

	.profectum-hero__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.profectum-post {
		padding-top: 48px;
		padding-bottom: 72px;
	}

	.profectum-post__title {
		margin-bottom: 24px;
	}

	.profectum-post__media {
		margin-bottom: 28px;
	}

	.profectum-post__content {
		gap: 20px;
		font-size: 18px;
		line-height: 28px;
	}

	.profectum-basic-section--green-box .profectum-basic-section__inner {
		padding-block: 32px;
		padding-inline: 24px;
	}

	.profectum-basic-section__heading-row {
		gap: 20px;
		margin-bottom: 28px;
	}

	.profectum-basic-section {
		padding-block: 72px;
	}

	.profectum-hero__texts--small .profectum-hero__text,
	.profectum-hero__texts--small .profectum-hero__list,
	.profectum-hero__texts--small .profectum-hero__heading {
		font-size: 17px;
		line-height: 20px;
	}

	.profectum-basic-section__title {
		margin-bottom: 28px;
	}

	.profectum-basic-section__body {
		gap: 20px;
	}

	.profectum-basic-section__text,
	.profectum-basic-section__item,
	.profectum-basic-section__heading {
		font-size: 18px;
		line-height: 28px;
	}

	.profectum-basic-section__action {
		margin-top: 32px;
	}

	.profectum-basic-section__action .btn-main {
		max-width: 100%;
		height: auto;
		min-height: 36px;
		padding-block: 10px;
	}

	.profectum-basic-section__action .btn-main__label {
		white-space: normal;
		text-align: left;
		line-height: 1.2;
	}

	.profectum-basic-section--split .profectum-basic-section__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"body"
			"action";
		row-gap: 40px;
	}

	.profectum-basic-section--split .profectum-basic-section__title {
		margin: 0;
	}

	.profectum-icon-cards {
		padding-block: 72px;
	}

	.profectum-icon-cards__title {
		margin-bottom: 40px;
	}

	.profectum-icon-cards__items {
		gap: 40px;
	}

	.profectum-icon-cards__item {
		flex-basis: 100%;
		max-width: 420px;
	}

	.profectum-icon-cards__icon {
		height: 150px;
		margin-bottom: 20px;
	}

	.profectum-text-image {
		padding-block: 72px;
	}

	.profectum-blog-pagination {
		padding-bottom: 72px;
	}

	.profectum-text-image__inner,
	.profectum-text-image--image-left .profectum-text-image__inner,
	.profectum-text-image--offset.profectum-text-image--image-left .profectum-text-image__inner,
	.profectum-text-image--dusana-intro .profectum-text-image__inner {
		grid-template-columns: 1fr;
	}

	.profectum-team-member__description h3{
		font-size: 24px;
		line-height: 30px
	}

	.profectum-text-image--image-left .profectum-text-image__content {
		order: 0;
	}

	.profectum-text-image--blog .profectum-text-image__inner,
	.profectum-text-image--blog.profectum-text-image--image-left .profectum-text-image__inner {
		gap: 24px;
	}

	.profectum-text-image--blog .profectum-text-image__media {
		order: -1;
	}

	.profectum-text-image--blog .profectum-text-image__content,
	.profectum-text-image--blog.profectum-text-image--image-left .profectum-text-image__content {
		order: 0;
	}

	.profectum-text-image--blog .profectum-text-image__image {
		aspect-ratio: 16 / 9;
		height: auto;
	}

	.profectum-text-image--blog.profectum-text-image--fallback-media .profectum-text-image__media {
		min-height: 180px;
	}

	.profectum-text-image--blog.profectum-text-image--fallback-media .profectum-text-image__image {
		max-height: 180px;
		aspect-ratio: auto;
	}

	.profectum-text-image--dusana-intro .profectum-text-image__media {
		order: -1;
	}

	.profectum-text-image--dusana-intro .profectum-text-image__content {
		order: 0;
	}

	.profectum-text-image__title {
		margin-bottom: 28px;
	}

	.profectum-text-image__body {
		gap: 20px;
	}

	.profectum-text-image__text,
	.profectum-text-image__item {
		font-size: 18px;
		line-height: 28px;
	}

	.profectum-text-image--framed .profectum-text-image__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"lead"
			"media"
			"body";
		row-gap: 24px;
	}

	.profectum-text-image--framed .profectum-text-image__media,
	.profectum-text-image--offset .profectum-text-image__media {
		--service-card-inset: 24px;
		--service-card-top: 20px;
		padding: var(--service-card-top) 0;
	}

	.profectum-text-image--framed .profectum-text-image__image,
	.profectum-text-image--offset .profectum-text-image__image {
		aspect-ratio: auto;
		width: 100%;
		margin: 0;
	}

	.profectum-text-image--align-right .profectum-text-image__content {
		text-align: left;
		align-items: stretch;
	}

	.profectum-osnivacica {
		padding-block: 64px;
	}

	.profectum-osnivacica__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"media"
			"content";
		row-gap: 24px;
	}

	.profectum-osnivacica__text {
		font-size: 18px;
		line-height: 28px;
	}

	.profectum-osnivacica__logo {
		padding-top: 32px;
		max-width: 320px;
	}

	.profectum-osnivacica__action {
		margin-top: 32px;
	}

	.profectum-osnivacica__image {
		height: auto;
		aspect-ratio: 3 / 4;
	}

	.profectum-team {
		padding-block: 96px 72px;
	}

	.profectum-team-member {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"content";
		gap: 24px;
		padding: 16px;
	}

	.profectum-team-member::before {
		top: -80px;
	}

	.profectum-team-member--image-right,
	.profectum-team-member--image-left {
		grid-template-areas:
			"media"
			"content";
	}

	.profectum-team-member__content{
		padding: 0;
	}

	.profectum-team-member__action .btn-main {
		max-width: 100%;
		height: auto;
		min-height: 36px;
		padding-block: 10px;
	}

	.profectum-team-member__action .btn-main__label {
		white-space: normal;
		text-align: left;
		line-height: 1.2;
	}

	.profectum-team-member + .profectum-team-member {
		margin-top: 120px;
	}

	.profectum-text-image__image {
		height: auto;
		/* aspect-ratio: 4 / 5; */
	}

	.profectum-staggered-cards {
		padding-block: 64px;
	}

	.profectum-staggered-cards__list {
		gap: 24px;
	}

	.profectum-staggered-cards__item,
	.profectum-staggered-cards__item--start,
	.profectum-staggered-cards__item--end {
		grid-template-columns: 1fr;
		grid-template-areas:
			"icon"
			"body";
		width: 100%;
		margin: 0;
		padding: 32px 24px;
	}

	.profectum-staggered-cards__item--end::before,
	.profectum-staggered-cards__item--start::before,
	.profectum-staggered-cards__item--start::after {
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.profectum-staggered-cards__item--start {
		--band-pad: 16px;
		padding-block: calc(var(--band-pad) + 32px);
		padding-inline: 16px;
	}

	.profectum-staggered-cards__icon {
		max-width: 140px;
	}

	.profectum-staggered-cards__title {
		font-size: 28px;
		line-height: 36px;
	}

	.profectum-staggered-cards__line {
		font-size: 18px;
		line-height: 28px;
	}

	.profectum-procedure-cards {
		padding-block: 64px;
	}

	.profectum-procedure-cards__title {
		margin-bottom: 40px;
	}

	.profectum-procedure-cards__list {
		gap: 24px;
	}

	.profectum-procedure-cards__item,
	.profectum-procedure-cards__item--odd,
	.profectum-procedure-cards__item--even {
		grid-template-columns: 1fr;
		grid-template-areas:
			"icon"
			"body";
		padding: 32px 24px;
	}

	.profectum-procedure-cards__item--odd::before,
	.profectum-procedure-cards__item--even::before {
		left: 0;
		right: 0;
	}

	.profectum-procedure-cards__icon {
		max-width: 140px;
	}

	.profectum-media-text {
		padding-block: 64px;
	}

	.profectum-media-text__inner,
	.profectum-media-text--image-left .profectum-media-text__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"content"
			"action";
		gap: 32px;
	}

	.profectum-media-text--image-left .profectum-media-text__content {
		align-items: flex-start;
		text-align: left;
	}

	.profectum-media-text--image-right .profectum-media-text__action {
		justify-content: flex-start;
	}

	.profectum-media-text__title {
		margin-bottom: 24px;
	}

	.profectum-media-text__text {
		font-size: 18px;
		line-height: 28px;
	}

	.intro-quote {
		padding-top: 24px;
		padding-bottom: 0;
	}

	.intro-quote__rule {
		width: 72px;
		margin-right: 14px;
	}

	.profectum-proces {
		background-position: right bottom;
		background-size: 199% auto;
		padding-block: 64px;
	}

	.profectum-proces__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.profectum-proces__left {
		display: contents;
	}

	.profectum-proces__title {
		order: 1;
	}

	.profectum-proces__right {
		order: 2;
		padding-top: 0;
		gap: 20px;
	}

	.profectum-proces__left .btn-main {
		order: 3;
		margin-top: 0;
		justify-self: start;
		align-self: start;
	}

	h2 {
		font-size: 28px;
		line-height: 32px;
	}

	.profectum-usluge {
		padding-block: 64px;
	}

	.profectum-usluge__title {
		margin-bottom: 36px;
	}

	.profectum-usluge--has-intro .profectum-usluge__title {
		margin-bottom: 20px;
	}

	.profectum-usluge__intro {
		margin-bottom: 36px;
		font-size: 18px;
		line-height: 28px;
	}

	.profectum-usluge__cards {
		gap: 40px;
	}

	.service-card {
		--service-card-inset: 24px;
		--service-card-top: 20px;
		grid-template-columns: 1fr;
		gap: 0;
		min-height: 0;
	}

	.service-card--image-right {
		grid-template-columns: 1fr;
	}

	.service-card--image-right .service-card__media,
	.service-card--image-right .service-card__content {
		order: initial;
	}

	.service-card--image-right .service-card__media {
		order: -1;
	}

	.service-card--image-right .service-card__bg {
		right: 0;
		left: 0;
	}

	.service-card__media,
	.service-card__image {
		min-height: 220px;
	}

	.service-card__content {
		padding: 28px 16px 32px;
	}

	.service-card__title--lg {
		font-size: 32px;
		line-height: 40px;
	}

	.service-card--section .service-card__media,
	.service-card--section .service-card__image {
		width: 100%;
		height: auto;
		min-height: 0;
	}

	.digitalizacija-intro {
		padding-block: 64px;
	}

	.profectum-proces-projektovanja {
		padding-block: 72px;
	}

	.profectum-proces-projektovanja__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.profectum-proces-projektovanja__title {
		margin-bottom: 28px;
	}

	.profectum-proces-projektovanja__text {
		font-size: 18px;
		line-height: 30px;
	}

	.profectum-proces-projektovanja__text + .profectum-proces-projektovanja__text {
		margin-top: 20px;
	}

	.profectum-proces-projektovanja__intro {
		margin-bottom: 20px;
		font-size: 18px;
		line-height: 30px;
	}

	.profectum-proces-projektovanja__note {
		padding-top: 0;
		font-size: 16px;
		line-height: 26px;
	}

	.profectum-proces-projektovanja__list {
		gap: 12px;
	}

	.profectum-proces-projektovanja__item {
		font-size: 20px;
	}

	.profectum-proces-projektovanja__chevron {
		width: 16px;
	}

	.profectum-vrste-objekata {
		padding-block: 72px;
	}

	.profectum-vrste-objekata__title {
		margin-bottom: 24px;
		max-width: none;
	}

	.profectum-vrste-objekata__intro {
		margin-bottom: 24px;
		font-size: 18px;
		line-height: 30px;
	}

	.profectum-vrste-objekata__list {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		grid-auto-flow: row;
		gap: 6px;
	}

	.profectum-vrste-objekata__item {
		font-size: 18px;
	}

	.profectum-vrste-objekata__chevron {
		width: 16px;
	}

	.profectum-izabrati-profectum {
		padding-block: 72px;
	}

	.profectum-izabrati-profectum__title {
		margin-bottom: 20px;
	}

	.profectum-izabrati-profectum__intro {
		margin-bottom: 40px;
		font-size: 18px;
		line-height: 30px;
	}

	.profectum-izabrati-profectum__items {
		grid-template-columns: 1fr;
		row-gap: 40px;
	}

	.profectum-izabrati-profectum__item,
	.profectum-izabrati-profectum__item:nth-child(4),
	.profectum-izabrati-profectum__item:nth-child(5),
	.profectum-izabrati-profectum__item:last-child {
		grid-column: auto;
		max-width: none;
		justify-self: stretch;
	}

	.profectum-izabrati-profectum__icon {
		max-width: 140px;
		height: 72px;
		margin-bottom: 20px;
	}

	.profectum-faq {
		padding-block: 72px;
	}

	.profectum-faq__title {
		margin-bottom: 36px;
	}

	.profectum-faq__list {
		gap: 20px;
	}

	.profectum-faq__trigger {
		gap: 14px;
		padding: 14px 16px;
	}

	.profectum-faq__chevron {
		width: 16px;
	}

	.profectum-faq__question {
		font-size: 18px;
		line-height: 26px;
	}

	.profectum-faq__answer {
		padding-top: 14px;
		font-size: 16px;
		line-height: 26px;
	}

	.profectum-izabrati-profectum__item-title {
		font-size: 18px;
		line-height: 24px;
	}

	.profectum-izabrati-profectum__item-text {
		font-size: 16px;
		line-height: 22px;
	}

	.profectum-pravilno-projektovanje {
		padding-block: 72px;
	}

	.profectum-pravilno-projektovanje__title {
		margin-bottom: 24px;
	}

	.profectum-pravilno-projektovanje__text {
		font-size: 18px;
		line-height: 30px;
	}

	.profectum-pravilno-projektovanje__panel {
		grid-template-columns: 1fr;
		margin-top: 32px;
	}

	.profectum-pravilno-projektovanje__list-wrap {
		padding: 32px 24px;
	}

	.profectum-pravilno-projektovanje__list {
		gap: 18px;
	}

	.profectum-pravilno-projektovanje__item {
		font-size: 18px;
	}

	.profectum-pravilno-projektovanje__chevron {
		width: 14px;
	}

	.profectum-pravilno-projektovanje__caption {
		padding: 20px 24px;
		font-size: 16px;
	}

	.profectum-projektovanje-section {
		padding-block: 72px;
	}

	.profectum-projektovanje-section__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.profectum-projektovanje-section__left {
		max-width: none;
	}

	.profectum-projektovanje-section__left .btn-main {
		margin-top: 32px;
	}

	.profectum-projektovanje-section__link {
		font-size: 20px;
		line-height: 24px;
	}

	.profectum-projektovanje-section__list {
		gap: 12px;
	}

	.profectum-urbanizam-section {
		padding-block: 64px;
	}

	.profectum-urbanizam-section__title {
		margin-bottom: 24px;
	}

	.profectum-urbanizam-section__card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.profectum-urbanizam-section__content {
		padding: 32px 24px;
		order: 2;
	}

	.profectum-urbanizam-section__media {
		order: 1;
	}

	.profectum-urbanizam-section__image {
		min-height: 260px;
	}

	.profectum-urbanizam-section__link {
		font-size: 18px;
	}

	.profectum-urbanizam-section__list {
		gap: 14px;
	}

	.profectum-urbanizam-section__content .btn-main {
		margin-top: 28px;
	}

	.profectum-digitalizacija-section {
		padding-block: 72px;
		background-size: 200%;
	}

	.profectum-digitalizacija-section__title {
		margin-bottom: 28px;
	}

	.profectum-digitalizacija-section__text {
		text-align: right;
		text-align-last: right;
	}

	.profectum-digitalizacija-section__action {
		justify-content: center;
		margin-top: 36px;
	}

	.profectum-procesrada {
		padding-block: 72px;
	}

	.profectum-procesrada__title {
		margin-bottom: 40px;
	}

	.profectum-procesrada__steps {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.profectum-procesrada__step:last-child {
		grid-column: auto;
		max-width: none;
		justify-self: stretch;
	}

	.profectum-procesrada__icon {
		width: 72px;
		height: 72px;
		margin-bottom: 20px;
	}

	.profectum-procesrada__step-title {
		font-size: 18px;
		line-height: 24px;
	}

	.profectum-procesrada__step-text {
		font-size: 15px;
		line-height: 24px;
		max-width: 320px;
		margin-inline: auto;
	}

	.profectum-vrednosti {
		padding-block: 72px;
	}

	.profectum-vrednosti__title {
		margin-bottom: 40px;
	}

	.profectum-vrednosti__items {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.profectum-vrednosti__item:last-child {
		grid-column: auto;
		max-width: none;
		justify-self: stretch;
	}

	.profectum-vrednosti__icon {
		width: 72px;
		height: 72px;
		margin-bottom: 20px;
	}

	.profectum-vrednosti__item-title {
		font-size: 20px;
		line-height: 26px;
	}

	.profectum-vrednosti__item-text {
		font-size: 17px;
		line-height: 20px;
		max-width: 100%;
		margin-inline: auto;
	}

	.profectum-numbers-section {
		height: auto;
		padding-top: 72px;
		padding-bottom: 0;
	}

	.profectum-numbers-section__inner,
	.profectum-numbers-section__footer {
		flex: none;
		height: auto;
	}

	.profectum-numbers-section__title {
		margin-bottom: 40px;
	}

	.profectum-numbers-section__items {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 40px 24px;
	}

	.profectum-numbers-section__item:last-child {
		grid-column: 1 / -1;
		justify-self: center;
	}

	.profectum-numbers-section__circle-wrap,
	.profectum-numbers-section__circle {
		width: 180px;
		height: 180px;
	}

	.profectum-numbers-section__number {
		font-size: 36px;
	}

	.profectum-numbers-section__number--digits-3 {
		font-size: 30px;
	}

	.profectum-numbers-section__number--digits-4 {
		font-size: 26px;
	}

	.profectum-numbers-section__number--digits-5,
	.profectum-numbers-section__number--digits-6 {
		font-size: 20px;
	}

	.profectum-numbers-section__text {
		font-size: 17px;
		line-height: 20px;
	}

	.profectum-numbers-section__footer {
		margin-top: 56px;
		padding: 48px 0 64px;
	}

	.profectum-numbers-section__action {
		margin-top: 32px;
		width: 100%;
	}

	.profectum-numbers-section__action .btn-main__label {
		white-space: normal;
		text-align: left;
	}

	.profectum-homepage-blogs {
		padding-block: 72px;
	}

	.profectum-homepage-blogs__inner {
		gap: 72px;
	}

	.profectum-homepage-blogs__title {
		margin-bottom: 24px;
	}

	.profectum-homepage-blogs__text + .profectum-homepage-blogs__text {
		margin-top: 20px;
	}

	.profectum-homepage-blogs__action {
		margin-top: 32px;
	}

	.profectum-homepage-blogs__list {
		gap: 20px;
		margin-top: 40px;
	}

	.profectum-homepage-blogs__item {
		min-height: 200px;
		padding: 32px 24px;
	}

	.profectum-homepage-blogs__placeholder {
		font-size: 28px;
	}

	.profectum-cta {
		padding-block: 72px;
	}

	.profectum-cta__title {
		margin-bottom: 24px;
	}


	.profectum-cta__action {
		margin-top: 40px;
		justify-content: flex-start;
	}

	.profectum-filozofija {
		padding-block: 72px;
	}

	.profectum-filozofija__title {
		margin-bottom: 24px;
	}

	.profectum-filozofija__list {
		margin-block: 20px;
	}

	.profectum-zasto {
		padding-block: 72px;
	}

	.profectum-zasto__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.profectum-zasto__title {
		margin-bottom: 28px;
	}

	.profectum-zasto__logo img {
		max-width: 280px;
	}

	.profectum-onama {
		padding-block: 72px;
	}

	.profectum-onama__inner {
		grid-template-columns: 1fr;
	}

	.profectum-onama__content {
		padding: 36px 24px 40px;
	}

	.profectum-onama__title {
		margin-bottom: 24px;
	}

	.profectum-dusanat {
		padding-block: 72px;
	}

	.profectum-dusanat__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.profectum-dusanat__media {
		order: -1;
	}

	.profectum-dusanat__content {
		padding: 36px 0px 40px;
	}

	.profectum-dusanat__title {
		font-size: 22px;
		line-height: 30px;
	}

	.profectum-dusanat__media img {
		max-width: none;
	}

	.profectum-dusanat__action {
		margin-top: 28px;
	}

	.profectum-dusanat__action .btn-main__label {
		text-align: left;
	}

	.profectum-elaborati-section {
		padding-block: 72px;
	}

	.profectum-elaborati-section__title {
		margin-bottom: 36px;
	}

	.profectum-elaborati-section__nav {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.profectum-elaborati-section__list {
		gap: 20px;
	}

	.profectum-elaborati-section__link {
		font-size: 20px;
		line-height: 28px;
	}

	.profectum-elaborati-section__action {
		justify-content: flex-start;
		margin-top: 40px;
	}

	.site-footer {
		padding-block: 56px 40px;
	}

	.site-footer__nav {
		grid-template-columns: 1fr 1fr;
		gap: 36px 28px;
	}

	.site-footer__col--contact {
		grid-column: 1 / -1;
	}

	.site-footer__credit {
		text-align: center;
	}

	.profectum-hero__content {
		gap: 24px;
	}
	
	.profectum-hero__texts--bigger, .profectum-hero__texts {
		gap: 16px;
	}

	.kontakt {
		padding-block: 36px 64px;
	}

	.kontakt__logo {
		width: min(1274px, 160vw);
		opacity: 0.85;
	}

	.kontakt__map {
		margin-top: 60px;
		aspect-ratio: 3/4;
		padding: 10px;
	}

	.kontakt__info-name {
		font-size: 32px;
	}

	.kontakt-form textarea {
		min-height: 150px;
	}
}
