/**
* Template Name: UpConstruction - v1.2.0
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
	--font-default: 'Roboto', sans-serif;
	--font-primary: 'Roboto', sans-serif;
	--font-secondary: 'Roboto', sans-serif;
}

/* Colors */
:root {
	--color-default: #252525;
	--color-default-1:#FFCC00;
	--color-primary: #009846;
	--color-primary-transparent: rgba(0, 152, 70, 0.6);
	--color-secondary: #006e34;
	--color-si-h3: #FFCC00;
	--color-acc-nc: rgba(0, 152, 70, .2);
}
/* :root {
	--color-default: #252525;
	--color-default-1:#FFCC00;
	--color-primary: #006d98;
	--color-primary-transparent: rgba(0, 94, 152, 0.6);
	--color-secondary: #003e6e;
	--color-si-h3: #FFCC00;
	--color-acc-nc: rgba(0, 84, 152, 0.2);
} */

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: var(--font-default);
	color: var(--color-default);
	overflow-x: hidden;
	font-size: 16px;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

a:hover {
	color: #cbff6b;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
	padding: 80px 0;
	overflow: hidden;
}

.section-bg {
	background: rgb(0,152,70);
	background: radial-gradient(circle, rgba(0,152,70,1) 0%, rgba(15,120,63,1) 90%);
}
.section-bg2 {
	background-image: url('../img/section-1-back.jpg');
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size:100vw;
}

.section-header {
	text-align: center;
	padding-bottom: 70px;
}

.section-header h2 {
	font-size: 20px;
	font-weight: 400;
	position: relative;
	color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
	content: "";
	width: 40px;
	height: 2px;
	background: var(--color-primary);
	display: inline-block;
}

.section-header h2:before {
	margin: 0 15px 7px 0;
}

.section-header h2:after {
	margin: 0 0 7px 15px;
}

.section-header p {
	margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
	.section-header p {
		max-width: 60%;
	}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 130px 0 60px 0;
	position: relative;
	background-size:cover;
	background-position: top center;
	background-repeat: no-repeat;
	background-image: url('/assets/img/slider/hero-carousel-1.jpg');
	background-attachment: fixed;
}
.breadcrumbs:before {
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	position: absolute;
	inset: 0;
}

.breadcrumbs h2 {
	font-size: 34px;
	font-weight: 400;
	color: #fff;
	font-family: var(--font-secondary);
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-primary);
}

.breadcrumbs ol a {
	color: rgba(255, 255, 255, 0.8);
	transition: 0.3s;
}

.breadcrumbs ol a:hover {
	text-decoration: underline;
}

.breadcrumbs ol li+li {
	padding-left: 10px;
}

.breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #fff;
	content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background: var(--color-default-1);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 18px;
	color: white;
	line-height: 0;
}
.scroll-top i::before {
	font-size: 18px;
	color: white;
	line-height: 0;
}

.scroll-top:hover {
	background: var(--color-default);
	color: #ffffff!important;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}
.one {
	background-image: url('/assets/img/slider/hero-carousel-1.jpg');
	background-size: contain;
	background-position: top center;
}
.two {
	background-image: url('/assets/img/slider/hero-carousel-2.jpg');
	background-size: contain;
	background-position: top center;
}
.three {
	background-image: url('/assets/img/slider/hero-carousel-4.jpg');
	background-size: contain;
	background-position: top center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #fff;
	border-color: var(--color-primary) transparent var(--color-primary) transparent;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1.5s linear infinite;
	animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
	.breadcrumbs h2 {
		font-size: 24px;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	text-transform: uppercase;
	z-index: 997;
	position: absolute;
	padding: 30px 0;
	top: 0;
	left: 0;
	right: 0;
}

.header .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.header .logo h1 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
	font-family: var(--font-primary);
}

.header .logo h1 span {
	color: var(--color-primary);
}

.kontakt .col-lg-6 {
	margin: 0px;
	margin-bottom: 24px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width: 1280px) {
	.navbar {
		padding: 0;
	}

	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navbar li {
		position: relative;
	}

	.navbar>ul>li {
		white-space: nowrap;
		padding: 10px 0 10px 14px;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 3px;
		font-family: var(--font-primary);
		font-size: 18px;
		font-weight: 700;
		color: rgba(255, 255, 255, 1);
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
		text-shadow: 0px 0px 3px #000000;
	}
	.navbar a i,
	.navbar a:focus i,
	.navbar a i::before,
	.navbar a:focus i::before {
		font-size: 18px;
		line-height: 0;
		margin-left: 5px;
		color: var(--color-default-1)!important;
	}

	.navbar>ul>li>a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--color-primary);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out;
	}

	.navbar a:hover:before,
	.navbar li:hover>a:before,
	.navbar .active:before {
		visibility: visible;
		width: 100%;
	}

	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
		color: #fff;
	}
	.navbar a i.trazi,
	.navbar a:focus i.trazi,
	.navbar a i.trazi::before,
	.navbar a:focus i.trazi::before {
		font-size: 18px;
		line-height: 0;
		margin-left: 0px;
		color: white!important;
		display: flex;
		padding: 6px 0px;
	}
	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 14px;
		top: calc(100% + 20px);
		margin: 0;
		padding: 0px;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		transition: 0.2s ease-in-out;
	}
	.navbar .dropdown ul li {
		min-width: 200px;
	}
	.navbar .dropdown ul a {
		padding: 10px 10px;
		font-size: 16px;
		text-transform: none;
		color: white;
		font-weight: 400;
		border-top: 1px solid rgb(0, 134, 0)!important;
		border-bottom: 1px solid rgba(6, 189, 0, 0.1)!important;
		text-shadow: none;
		background: rgb(235,235,235);
		/*background: linear-gradient(270deg, rgba(235,235,235,1) 0%, rgba(255,255,255,1) 65%);*/
		background-color: var(--color-primary);
	}
	.navbar .dropdown ul a i {
		font-size: 16px;
	}
	.navbar .dropdown ul a:hover,
	.navbar .dropdown ul .active:hover,
	.navbar .dropdown ul li:hover>a {
		color: var(--color-si-h3);
		background-color: var(--color-secondary);
	}
	.navbar .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}
	.navbar .dropdown .dropdown ul {
		top: 0;
		left: calc(100% - 10px);
		visibility: hidden;
	}
	.navbar .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: 100%;
		visibility: visible;
	}
}
@media (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}
	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}
@media (min-width: 1280px) {

	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}
	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background: var(--color-secondary);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}
	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-primary);
		font-size: 16px;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.7);
		white-space: nowrap;
		text-transform: uppercase;
		transition: 0.3s;
	}
	.navbar a i,
	.navbar a:focus i,
	.navbar a i::before,
	.navbar a:focus i::before {
		font-size: 18px;
		line-height: 0;
		margin-left: 5px;
		color: var(--color-primary)!important;
	}
	.navbar a:hover,
	.navbar .active,
	.navbar .active:focus,
	.navbar li:hover>a {
		color: #fff;
	}
	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		border: 2px solid var(--color-primary);
	}
	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
		display: block;
	}
	.mobile-nav-show {
		position: relative;
		color: #fff;
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.3s;
		z-index: 9999;
		padding-right: 10px;
	}
	.mobile-nav-hide {
		color: #fff;
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.3s;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 9999;
	}
	.mobile-nav-active {
		overflow: hidden;
	}
	.mobile-nav-active .navbar {
		right: 0;
	}
	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.6);
		z-index: 9996;
	}
}
/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
	padding: 30px 0;
}
.get-started .content h3 {
	font-size: 18px;
	color: var(--color-secondary);
	font-weight: 600;
	margin-bottom: 25px;
	padding-bottom: 25px;
	position: relative;
}
.get-started .content h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
}
.get-started .content p {
	font-size: 16px;
}
.get-started .php-email-form {
	background: #f3f3f3;
	padding: 30px;
	height: 100%;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
}
.portfolio-content {
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
}
.get-started .accordion {
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 575px) {
	.get-started .php-email-form {
		padding: 20px;
	}
}
.get-started .php-email-form h3 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}
.get-started .php-email-form p {
	font-size: 16px;
	margin-bottom: 20px;
}
.get-started .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #df1529;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}
.get-started .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}
.get-started .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}
.get-started .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #059652;
	border-top-color: #fff;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}
.get-started .php-email-form input,
.get-started .php-email-form textarea,
.get-started .php-email-form select {
	border-radius: 0;
	box-shadow: none;
	font-size: 16px;
	border-radius: 0;
}
select, select option {
	border-radius: 0px!important;
}
.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus,
.get-started .php-email-form select:focus {
	border-color: var(--color-primary);
}
.get-started .php-email-form input,
.get-started .php-email-form textarea,
.get-started .php-email-form select {
	padding: 12px 15px;
}
.get-started .php-email-form button[type=submit] {
	background: var(--color-primary);
	border: 0;
	padding: 10px 30px;
	color: #fff;
	transition: 0.4s;
	border-radius: 4px;
}
.get-started .php-email-form button[type=submit]:hover {
	background: rgba(254, 185, 0, 0.8);
}
@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions {
	background-image: url('../img/vina/kuca_bw.jpg');
	background-repeat: no-repeat;
	background-position: top right;
	background-size:contain;
}
.constructions .card-item {
	/* border: 2px solid rgba(82, 86, 94, 0.2); */
	background: #fff;
	position: relative;
	border-radius: 0;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
}
.constructions .card-item .card-bg {
	min-height: 300px;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.constructions .card-item .card-body {
	padding: 30px;
}
.constructions .card-item h4 {
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 15px;
	color: var(--color-secondary);
}
.constructions .card-item p {
	color: var(--color-default);
	margin: 0;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
	padding: 24px;
	border: 1px solid #f1f1f1;
	height: 100%;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
	background-image: url('../img/financije_fade.jpg');
	background-repeat: no-repeat;
	background-position: top right;
	background-size: 100%;
	background-color: white;
	overflow: hidden;
}
.services .index {
	padding-bottom: 60px;
}
.services .sidebar {
	padding: 24px;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
	background-color: white;
	/*background: linear-gradient(180deg, rgba(217,217,217,1) 0%, rgba(255,255,255,1) 30%);*/
	overflow: hidden;
}
.services .service-item .icon, .services .sidebar .icon {
	width: 48px;
	height: 48px;
	position: relative;
	float: left;
}
.services .service-item .icon i, .services .sidebar .icon i {
	color: var(--color-secondary);
	font-size: 30px;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
	line-height: 1;
}
.services .service-item:hover h3:first-child i, .services .service-item:hover h3:first-child,
.services .sidebar:hover h3:first-child i .icon, .services .sidebar:hover h3:first-child {
	color: var(--color-default-1);
}
.services .service-item h3, .services .sidebar h3, .blog-details h2.title {
	color: var(--color-primary);
	font-weight: 700;
	margin: 0 0 20px 0;
	padding-bottom: 20px;
	font-size: 20px;
	position: relative;
	display: block;
	border-bottom: 2px solid rgba(0, 0, 0, 0.06);
	transition: .2s;
}
.services .service-item h4, .services .sidebar h4 {
	color: var(--color-default);
	font-weight: 700;
	margin: 0px;
	font-size: 18px;
}
.services .service-item h3 i, .services .sidebar h3 i {
	margin-right: 12px;
}
.services .service-item ul, .services .sidebar ul {
	list-style: none;
	padding-left: 0px;
	margin-bottom: 0px;
}
.services .service-item ul li, .services .sidebar ul li{
	line-height: 1.8;
	font-size: 16px;
}
.services .service-item ul li a:hover, .services .service-item ul li a:focus, .services .service-item ul li a:active, 
.services .sidebar ul li a:hover, .services .sidebar ul li a:focus, .services .sidebar ul li a:active {
	text-decoration: underline;
}
.services .service-item ul li a i, .services .sidebar ul li a i {
	margin-right: 0px;
	width: 24px;
	text-align: center;
}
.services .service-item p {
	line-height: 24px;
	font-size: 16px;
	margin-bottom: 0;
	min-height: 48px;
}
.services .service-item .readmore {
	position: absolute;
	bottom:24px;
	left: 24px;
	display: flex;
	color: #838893;
	font-weight: 700;
}
.services .service-item .readmore:hover, .services .service-item .readmore:focus, .services .service-item .readmore:active {
	color: var(--color-secondary);
}
.services .service-item:hover .icon:first-child:before, .services .sidebar:hover .icon:first-child:before {
	background: var(--color-si-h3);
}
.services .service-item:hover h3, .services .sidebar:hover h3 {
	border-color: var(--color-si-h3);
}
.services .service-item a:hover, .services .service-item a:focus, .services .service-item a:active,
.services .sidebar a:hover, .services .sidebar a:focus, .services .sidebar a:active {
	color: var(--color-secondary);
}
.services h5 {
	padding-bottom: 12px;
	color: var(--color-secondary);
	border-bottom: 1px solid #f1f1f1;
}
.services .accordion h5 {
	padding-bottom: 0px;
	color: var(--color-secondary);
	border-bottom: 1px solid #f1f1f1;
}
/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
	border: 0;
}
.features .nav-link {
	padding: 15px 0;
	transition: 0.3s;
	color: var(--color-secondary);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 100%;
	border: 0;
	border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
	padding-right: 15px;
	font-size: 48px;
}
.features .nav-link h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}
@media (max-width: 575px) {
	.features .nav-link h4 {
		font-size: 18px;
	}
}
.features .nav-link:hover {
	color: var(--color-primary);
}
.features .nav-link.active {
	color: var(--color-primary);
	background-color: transparent;
	border-color: var(--color-primary);
}
.features .tab-content {
	margin-top: 30px;
}
.features .tab-pane h3 {
	font-weight: 400;
	font-size: 18px;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.features .tab-pane h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
}
.features .tab-pane ul {
	list-style: none;
	padding: 0;
}
.features .tab-pane ul li {
	padding-top: 10px;
}
.features .tab-pane ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--color-primary);
}
.features .tab-pane p:last-child {
	margin-bottom: 0;
}
/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}
.projects .portfolio-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	margin: 0 10px;
	line-height: 1;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}
.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
	color: var(--color-primary);
}
.projects .portfolio-flters li:first-child {
	margin-left: 0;
}
.projects .portfolio-flters li:last-child {
	margin-right: 0;
}
@media (max-width: 575px) {
	.projects .portfolio-flters li {
		font-size: 18px;
		margin: 0 5px;
	}
}
.projects .portfolio-content {
	position: relative;
	overflow: hidden;
}
.projects .portfolio-content img {
	transition: 0.3s;
	width: 100%;
	background-color: white;
	border: 1px solid #c9c9c9;
	background-color: #f1f1f1;
}
.projects .portfolio-content .portfolio-info {
	opacity: 0;
	position: absolute;
	inset: 0;
	z-index: 3;
	transition: all ease-in-out 0.3s;
	background: rgba(0, 0, 0, 0.6);
	padding: 15px;
}
.projects .portfolio-content .portfolio-info h4 {
	font-size: 18px;
	padding: 5px 10px;
	font-weight: 400;
	color: #fff;
	display: block;
	text-align: center;
	background-color: var(--color-primary);
}
.projects .portfolio-content .portfolio-info p {
	position: absolute;
	bottom: 10px;
	text-align: center;
	display: inline-block;
	left: 0;
	right: 0;
	font-size: 18px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
}
.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
	position: absolute;
	left: calc(50% - 16px);
	font-size: 40px;
	top: calc(50% - 14px);
	color: #fff;
	transition: 0.3s;
	line-height: 1.2;
}
.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
	color: var(--color-primary);
}
.projects .portfolio-content .portfolio-info .details-link {
	left: 50%;
	font-size: 34px;
	line-height: 0;
}
.projects .portfolio-content:hover .portfolio-info {
	opacity: 1;
}
.projects .portfolio-content:hover img {
	transform: scale(1.1);
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
	padding-left: 50px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}
.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 0 15px 30px 0;
	min-height: 200px;
	box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.4);
	position: relative;
	background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 10px;
	border: 6px solid #fff;
	position: absolute;
	left: -45px;
}
.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: 400;
	margin: 10px 0 5px 0;
	color: #000;
}
.testimonials .testimonial-item h4 {
	font-size: 20px;
	color: #999;
	margin: 0;
}
.testimonials .testimonial-item .stars {
	margin: 10px 0;
}
.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #ffd565;
	font-size: 26px;
	line-height: 0;
}
.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}
.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}
.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #d5d7da;
	opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}
@media (max-width: 767px) {
	.testimonials .testimonial-wrap {
		padding-left: 0;
	}
	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
		overflow: hidden;
	}
	.testimonials .testimonial-item {
		padding: 30px;
		margin: 15px;
	}
	.testimonials .testimonial-item .testimonial-img {
		position: static;
		left: auto;
	}
}
/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
	background-size: cover;
	background-position: center center;
	min-height: 400px;
}
.alt-services h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.alt-services h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 2px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
}
.vijece-ustrojstvo  h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 2px;
	background: var(--color-si-h3);
	left: 0;
	bottom: 0;
}
.alt-services .icon-box {
	margin-top: 50px;
}
.alt-services .icon-box i {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	margin-left: 0px;
	margin-right: 20px;
	font-size: 28px;
	min-width: 56px!important;
	height: 56px;
	border-radius: 4px;
	line-height: 0;
	box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
	background-color: #fff;
	transition: 0.3s;
}
.alt-services .icon-box:hover i {
	background-color: var(--color-primary);
	color: #fff;
}
.alt-services .icon-box h4 {
	font-weight:400;
	margin-bottom: 10px;
	font-size: 20px;
}
.alt-services .icon-box h4 a {
	color: #000;
	transition: 0.3s;
}
.alt-services .icon-box h4 a:hover {
	color: var(--color-primary);
}
.alt-services .icon-box p {
	line-height: 24px;
	font-size: 18px;
	margin-bottom: 0;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
	font-size: 40px;
	font-weight: 400;
	font-family: var(--font-secondary);
	margin: 30px 0;
}
@media (min-width: 991px) {
	.about h2 {
		max-width: 65%;
		margin: 0 0 30px 0;
	}
}
.about .our-story {
	padding: 40px;
	background-color: #f5f6f7;
}
.v-s {
	width: 100%;
	height: 50vh;
}
@media (min-width: 991px) {
	.about .our-story {
		padding-right: calc(15% + 20px);
	}
	.about .our-story-2 {
		padding-right: 40px;
	}
	.about .our-story p {
		text-align: justify;
		font-size: 16px;
	}
	.v-s {
		width: 100%;
		height: 70vh;
	}
}
.about .our-story h4 {
	text-transform: uppercase;
	font-size: 22px;
	color: #838893;
}
.about .our-story h3 {
	font-size: 18px;
	font-weight:400;
	margin-bottom: 20px;
	color: var(--color-secondary);
}
.about .our-story p:last-child {
	margin-bottom: 0;
}
.about ul {
	list-style: none;
	padding: 0;
	font-size: 16px;
}
.about ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}
.about ul i {
	font-size: 20px;
	margin-right: 4px;
	color: var(--color-primary);
}
.about .watch-video i {
	font-size: 32px;
	transition: 0.3s;
	color: var(--color-primary);
}
.about .watch-video a {
	font-weight: 600;
	color: var(--color-secondary);
	margin-left: 8px;
	transition: 0.3s;
}
.about .watch-video:hover a {
	color: var(--color-primary);
}
.about .about-img {
	min-height: 600px;
	background-size: cover;
	background-position: center;
}
@media (min-width: 992px) {
	.about .about-img {
		position: absolute;
		top: 0;
		right: 0;
	}
}
/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
	background: #fff;
	box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
	padding: 30px;
}
.stats-counter .stats-item i {
	font-size: 42px;
	line-height: 0;
	margin-right: 20px;
	color: var(--color-primary);
}
.stats-counter .stats-item span {
	font-size: 36px;
	display: block;
	font-weight: 600;
	color: var(--color-secondary);
}
.stats-counter .stats-item p {
	padding: 0;
	margin: 0;
	font-family: var(--font-primary);
	font-size: 18px;
}
/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
	position: relative;
}
.team .member .member-img {
	margin: 0 80px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}
@media (max-width: 1024px) {
	.team .member .member-img {
		margin: 0 60px;
	}
}
.team .member .member-img img {
	position: relative;
	z-index: 1;
}
.team .member .member-img .social {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	padding-bottom: 20px;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
}
.team .member .member-img .social a {
	transition: 0.3s;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
}
.team .member .member-img .social a:hover {
	color: var(--color-primary);
}
.team .member .member-info {
	margin-top: 30px;
}
.team .member .member-info h4 {
	font-weight: 400;
	margin-bottom: 6px;
	font-size: 20px;
	color: var(--color-secondary);
}
.team .member .member-info span {
	font-style: italic;
	display: block;
	font-size: 16px;
	color: #838893;
	margin-bottom: 10px;
}
.team .member .member-info p {
	margin-bottom: 0;
	font-size: 18px;
}
.team .member:hover .member-img .social {
	padding-bottom: 0;
	visibility: visible;
	opacity: 1;
}
/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-secondary);
}
.services-cards p {
	font-size: 16px;
}
.services-cards ul li {
	display: flex;
	align-items: center;
	font-size: 16px;
	padding-top: 10px;
}
.services-cards ul li i {
	font-size: 16px;
	color: var(--color-primary);
	margin-right: 6px;
}
/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
	width: 100%;
}
.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.7);
	opacity: 1;
}
.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}
.project-details .swiper-button-prev,
.project-details .swiper-button-next {
	width: 48px;
	height: 48px;
}
.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
	color: rgba(255, 255, 255, 0.8);
	background-color: rgba(0, 0, 0, 0.2);
	font-size: 18px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}
.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
	background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 575px) {
	.project-details .swiper-button-prev,
	.project-details .swiper-button-next {
		display: none;
	}
}
.project-details .portfolio-info h3 {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.project-details .portfolio-info h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 2px;
	background: var(--color-primary);
	left: 0;
	bottom: 0;
}
.project-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 16px;
}
.project-details .portfolio-info ul li {
	display: flex;
	flex-direction: column;
	padding-bottom: 15px;
}
.project-details .portfolio-info ul strong {
	text-transform: uppercase;
	font-weight: 400;
	color: #838893;
	font-size: 16px;
}
.project-details .portfolio-info .btn-visit {
	padding: 8px 40px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50px;
	transition: 0.3s;
}
.project-details .portfolio-info .btn-visit:hover {
	background: #ffc019;
}
.project-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 20px;
	color: var(--color-secondary);
}
.project-details .portfolio-description p {
	padding: 0;
}
.project-details .portfolio-description .testimonial-item {
	padding: 30px 30px 0 30px;
	position: relative;
	background: #f5f6f7;
	height: 100%;
	margin-bottom: 50px;
}
.project-details .portfolio-description .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50px;
	border: 6px solid #fff;
	float: left;
	margin: 0 10px 0 0;
}
.project-details .portfolio-description .testimonial-item h3 {
	font-size: 18px;
	font-weight: 400;
	margin: 15px 0 5px 0;
	padding-top: 20px;
}
.project-details .portfolio-description .testimonial-item h4 {
	font-size: 20px;
	color: #6c757d;
	margin: 0;
}
.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
	color: #ffd565;
	font-size: 26px;
	line-height: 0;
}
.project-details .portfolio-description .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}
.project-details .portfolio-description .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}
.project-details .portfolio-description .testimonial-item p {
	font-style: italic;
	margin: 0 0 15px 0 0 0;
	padding: 0;
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
	padding: 10px 30px;
	border: 2px solid #d5d7da;
	margin-bottom: 20px;
}
.service-details .services-list a {
	display: block;
	line-height: 1;
	padding: 8px 0 8px 15px;
	border-left: 3px solid #d9e3e8;
	margin: 20px 0;
	color: var(--color-secondary);
	transition: 0.3s;
}
.service-details .services-list a.active {
	font-weight: 400;
	border-color: var(--color-primary);
}
.service-details .services-list a:hover {
	border-color: var(--color-primary);
}
.service-details .services-img {
	margin-bottom: 20px;
}
.service-details h3 {
	font-size: 18px;
	font-weight: 400;
}
.service-details h4 {
	font-size: 20px;
	font-weight: 400;
}
.service-details p {
	font-size: 16px;
}
.service-details ul {
	list-style: none;
	padding: 0;
	font-size: 16px;
}
.service-details ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}
.service-details ul i {
	font-size: 20px;
	margin-right: 8px;
	color: var(--color-primary);
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	padding: 20px;
}
.contact .info-item i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 18px;
	line-height: 0;
	color: var(--color-primary);
	border-radius: 50%;
	border: 2px dotted #ffd565;
}
.contact .info-item h3 {
	font-size: 18px;
	color: #6c757d;
	font-weight: 400;
	margin: 10px 0;
}
.contact .info-item p {
	padding: 0;
	line-height: 24px;
	font-size: 16px;
	margin-bottom: 0;
}
.php-email-form {
	width: 100%;
	background: #fff;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
	padding: 30px;
}
.services .php-email-form {
	width: 100%;
	background: none;
	box-shadow: none;
	padding: 0px;
}
.modal .php-email-form {
	width: 100%;
	background: none;
	box-shadow: none;
	padding: 0px;
	border-radius: 10px;
}
.php-email-form .form-group {
	padding-bottom: 20px;
}
.php-email-form .error-message {
	display: none;
	color: #fff;
	background: #df1529;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}
.php-email-form .error-message br+br {
	margin-top: 25px;
}
.php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #059652;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}
.php-email-form .loading {
	display: none;
	background: none;
	text-align: center;
	padding: 15px;
}

.php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #059652;
	border-top-color: #fff;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}
.php-email-form input,
.php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 16px;
}
.php-email-form input:focus,
.php-email-form textarea:focus {
	border-color: var(--color-primary);
}
.php-email-form textarea {
	padding: 10px 12px;
}
.php-email-form button[type=submit] {
	background: var(--color-primary);
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 5px;
}
.php-email-form button[type=submit]:hover {
	background: rgba(254, 185, 0, 0.8);
}
@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
/* .recent-blog-posts {
	background-image: url('../img/section-1-back.jpg');
	background-position: right top;
	background-repeat: no-repeat;
	background-size: contain;
} */
.recent-blog-posts .post-item {
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
	transition: 0.3s;
	background-color: white;
}
.recent-blog-posts .post-item .post-img {
	width: 100%;
	height: 300px;
	text-align: center;
}
.recent-blog-posts .post-item .post-img img {
	object-fit: cover;
	width: 100%;
	height: 300px;
}
.recent-blog-posts .post-item .post-img img {
	transition: 0.5s;
}
.recent-blog-posts .post-item .post-date {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--color-primary-transparent);
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	padding: 6px 12px;
	font-weight: 400;
}
.recent-blog-posts .post-item .post-content {
	padding: 30px;
}
.recent-blog-posts .post-item .post-title {
	font-size: 18px;
	color: var(--color-secondary);
	font-weight: 400;
	transition: 0.3s;
	margin-bottom: 45px;
}
.recent-blog-posts .post-item .meta i {
	font-size: 16px;
	color: var(--color-primary);
}
.recent-blog-posts .post-item .meta span {
	font-size: 16px;
	color: #838893;
}
.recent-blog-posts .post-item hr {
	color: #888;
	margin: 20px 0;
}
.recent-blog-posts .post-item .readmore {
	position: absolute;
	bottom: 30px;
	left: 30px;
	display: flex;
	align-items: center;
	font-weight: 700;
	line-height: 1;
	transition: 0.3s;
	color: #838893;
}
.recent-blog-posts .post-item .readmore i {
	line-height: 0;
	margin-left: 6px;
	font-size: 16px;
}
.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
	color: var(--color-primary);
}
.recent-blog-posts .post-item:hover .post-img img {
	transform: scale(1.1);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	overflow-x: hidden;
	padding: 0;
}
.hero .carousel {
	width: 100%;
	min-height: 100vh;
	padding: 80px 0;
	margin: 0;
	position: relative;
}
.hero .carousel-item {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 1;
	transition-duration: 0.4s;
}
.hero .carousel-item::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	inset: 0;
}
.hero .info {
	position: absolute;
	inset: 0;
	z-index: 2;
}
@media (max-width: 768px) {
	.hero .info {
		padding: 0 50px;
	}
}
.hero .info h2 {
	color: #fff;
	margin-bottom: 30px;
	padding-bottom: 30px;
	font-size: 36px;
	font-weight: 400;
	position: relative;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.hero .info h2 span{
	color: var(--color-si-h3);
}
.hero .info h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 80px;
	height: 2px;
	background: var(--color-primary);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.hero .info p {
	color: rgba(255, 255, 255, 1);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
	font-size: 20px;
}

.hero .info .btn-get-started {
	font-family: var(--font-primary);
	background-color: var(--color-secondary);
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 50px;
	transition: all 0.2s ease-in-out;
	margin: 10px;
	color: #fff;
	border: 2px solid var(--color-secondary);
}
@media (max-width: 768px) {
	.hero .info h2 {
		font-size: 22px;
	}
	.hero .info p {
		font-size: 18px;
	}
	.hero .info .btn-get-started {
		font-size: 16px;
		padding: 10px 30px;
	}
}
.hero .info .btn-get-started:hover {
	background: var(--color-primary);
}

.hero .carousel-control-prev {
	justify-content: start;
}

@media (min-width: 640px) {
	.hero .carousel-control-prev {
		padding-left: 15px;
	}
}

.hero .carousel-control-next {
	justify-content: end;
}

@media (min-width: 640px) {
	.hero .carousel-control-next {
		padding-right: 15px;
	}
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
	background: none;
	font-size: 26px;
	line-height: 0;
	background: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
	border-radius: 50px;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
	z-index: 3;
	transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
	opacity: 1;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
	opacity: 1;
}
.hero .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-2.5 * var(--bs-gutter-x));
    margin-left: calc(-2.5 * var(--bs-gutter-x));
}
/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-pagination {
	margin-top: 30px;
	color: #838893;
}

.blog-pagination ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.blog-pagination li {
	margin: 0 5px;
	transition: 0.3s;
}

.blog-pagination li a {
	color: var(--color-secondary);
	padding: 7px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-pagination li.active,
.blog-pagination li:hover {
	background: var(--color-primary);
	color: #fff;
}

.blog-pagination li.active a,
.blog-pagination li:hover a {
	color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.posts-list .post-item {
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
	transition: 0.3s;
	background-color: white!important;
}

.posts-list .post-img img {
	transition: 0.5s;
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.posts-list .post-date {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--color-primary-transparent);
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	padding: 6px 12px;
	font-weight: 400;
}
.post-date i {
	margin-right: 6px;
}

.posts-list .post-content {
	padding: 30px;
}

.posts-list .post-title {
	font-size: 18px;
	color: var(--color-secondary);
	font-weight: 400;
	transition: 0.3s;
	margin-bottom: 45px;
}

.posts-list .meta i {
	font-size: 16px;
	color: var(--color-primary);
}

.posts-list .meta span {
	font-size: 16px;
	color: #838893;
}

.posts-list p {
	margin-top: 20px;
}

.posts-list hr {
	color: #888;
	margin-bottom: 20px;
}

.posts-list .readmore {
	position: absolute;
	bottom: 30px;
	left: 30px;
	display: flex;
	align-items: center;
	font-weight: 700;
	line-height: 1;
	transition: 0.3s;
	color: #838893;
}

.posts-list .readmore i {
	line-height: 0;
	margin-left: 6px;
	font-size: 16px;
}

.posts-list .post-item:hover .post-title,
.posts-list .post-item:hover .readmore {
	color: var(--color-primary);
}

.posts-list .post-item:hover .post-img img {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	padding: 24px;
	background-color: white;
	height: 100%;
}

.blog-details .post-img {
	overflow: hidden;
}

.blog-details .title {
	font-size: 28px;
	font-weight: 400;
	padding: 0;
	margin: 20px 0 0 0;
	color: var(--color-secondary);
}

.blog-details .content {
	margin-top: 20px;
}
.blog-details .content img {
	margin-top: 20px;
	width: 100%;
}
.blog-details .content h3 {
	font-size: 18px;
	margin-top: 30px;
	font-weight: 400;
}

.blog-details .content blockquote {
	overflow: hidden;
	background-color: rgba(82, 86, 94, 0.06);
	padding: 60px;
	position: relative;
	text-align: center;
	margin: 20px 0;
}

.blog-details .content blockquote p {
	color: var(--color-default);
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 20px;
}

.blog-details .content blockquote:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--color-primary);
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog-details .meta-top {
	margin-top: 20px;
	color: #6c757d;
}

.blog-details .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

.blog-details .meta-top ul li+li {
	padding-left: 20px;
}

.blog-details .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: var(--color-primary);
}

.blog-details .meta-top a {
	color: #6c757d;
	font-size: 16px;
	display: inline-block;
	line-height: 1;
	transition: 0.3s;
}

.blog-details .meta-top a:hover {
	color: var(--color-primary);
}

.blog-details .meta-bottom {
	padding-top: 10px;
	border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog-details .meta-bottom i {
	color: #838893;
	display: inline;
}

.blog-details .meta-bottom a {
	color: rgba(82, 86, 94, 0.8);
	transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
	color: var(--color-primary);
}

.blog-details .meta-bottom .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 16px;
}

.blog-details .meta-bottom .cats li {
	display: inline-block;
}

.blog-details .meta-bottom .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 16px;
}

.blog-details .meta-bottom .tags li {
	display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
	padding-right: 6px;
	color: var(--color-default);
	content: ",";
}

.blog-details .meta-bottom .share {
	font-size: 16px;
}

.blog-details .meta-bottom .share i {
	padding-left: 5px;
}

.post-author {
	padding: 20px 40px;
	margin-top: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	background-color: white;
}

.post-author img {
	max-width: 120px;
	margin-right: 20px;
}

.post-author h4 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
	padding: 0;
	color: var(--color-secondary);
}

.post-author .social-links {
	margin: 0 10px 10px 0;
}

.post-author .social-links a {
	color: rgba(82, 86, 94, 0.5);
	margin-right: 5px;
}

.post-author p {
	font-style: italic;
	color: rgba(108, 117, 125, 0.8);
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.sidebar {
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	background-color: white;
}

.sidebar .sidebar-title {
	font-size: 20px;
	font-weight: 400;
	padding: 0;
	margin: 0;
	color: var(--color-secondary);
}

.sidebar .sidebar-item+.sidebar-item {
	margin-top: 40px;
}

.sidebar .search-form form {
	background: #fff;
	border: 2px solid rgba(82, 86, 94, 0.3);
	border-radius: 4px;
	padding: 3px 10px;
	position: relative;
}

.sidebar .search-form form input[type=text] {
	border: 0;
	padding: 4px;
	border-radius: 4px;
	width: calc(100% - 40px);
}

.sidebar .search-form form input[type=text]:focus {
	outline: none;
}

.sidebar .search-form form button {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	background: var(--color-primary);
	color: var(--color-secondary);
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	line-height: 0;
}

.sidebar .search-form form button i {
	line-height: 0;
}

.sidebar .search-form form button:hover {
	background: rgba(254, 185, 0, 0.8);
}

.sidebar .categories ul {
	list-style: none;
	padding: 0;
}

.sidebar .categories ul li+li {
	padding-top: 10px;
}

.sidebar .categories ul a {
	color: var(--color-secondary);
	transition: 0.3s;
}

.sidebar .categories ul a:hover {
	color: var(--color-default);
}

.sidebar .categories ul a span {
	padding-left: 5px;
	color: rgba(54, 77, 89, 0.4);
	font-size: 16px;
}

.sidebar .recent-posts .post-item {
	display: flex;
}

.sidebar .recent-posts .post-item+.post-item {
	margin-top: 15px;
}

.sidebar .recent-posts img {
	max-width: 80px;
	margin-right: 15px;
	object-fit: cover;
}

.sidebar .recent-posts h4 {
	font-size: 20px;
	font-weight: 400;
}

.sidebar .recent-posts h4 a {
	color: var(--color-secondary);
	transition: 0.3s;
}

.sidebar .recent-posts h4 a:hover {
	color: var(--color-primary);
}

.sidebar .recent-posts time {
	display: block;
	font-style: italic;
	font-size: 16px;
	color: rgba(54, 77, 89, 0.4);
}

.sidebar .tags {
	margin-bottom: -10px;
}

.sidebar .tags ul {
	list-style: none;
	padding: 0;
}

.sidebar .tags ul li {
	display: inline-block;
}

.sidebar .tags ul a {
	color: #838893;
	font-size: 16px;
	padding: 6px 14px;
	margin: 0 6px 8px 0;
	border: 2px solid rgba(131, 136, 147, 0.4);
	display: inline-block;
	transition: 0.3s;
}

.sidebar .tags ul a:hover {
	color: var(--color-secondary);
	border: 2px solid var(--color-primary);
	background: var(--color-primary);
}

.sidebar .tags ul a span {
	padding-left: 5px;
	color: rgba(131, 136, 147, 0.8);
	font-size: 16px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.comments {
	margin-top: 30px;
}

.comments .comments-count {
	font-weight: 400;
}

.comments .comment {
	margin-top: 30px;
	position: relative;
}

.comments .comment .comment-img {
	margin-right: 14px;
}

.comments .comment .comment-img img {
	width: 60px;
}

.comments .comment h5 {
	font-size: 18px;
	margin-bottom: 2px;
}

.comments .comment h5 a {
	font-weight: 400;
	color: var(--color-default);
	transition: 0.3s;
}

.comments .comment h5 a:hover {
	color: var(--color-primary);
}

.comments .comment h5 .reply {
	padding-left: 10px;
	color: var(--color-secondary);
}

.comments .comment h5 .reply i {
	font-size: 20px;
}

.comments .comment time {
	display: block;
	font-size: 18px;
	color: rgba(82, 86, 94, 0.8);
	margin-bottom: 5px;
}

.comments .comment.comment-reply {
	padding-left: 40px;
}

.comments .reply-form {
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.comments .reply-form h4 {
	font-weight: 400;
	font-size: 20px;
}

.comments .reply-form p {
	font-size: 18px;
}

.comments .reply-form input {
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 18px;
}

.comments .reply-form input:focus {
	box-shadow: none;
	border-color: rgba(254, 185, 0, 0.8);
}

.comments .reply-form textarea {
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 18px;
}

.comments .reply-form textarea:focus {
	box-shadow: none;
	border-color: rgba(254, 185, 0, 0.8);
}

.comments .reply-form .form-group {
	margin-bottom: 25px;
}

.comments .reply-form .btn-primary {
	border-radius: 0px;
	padding: 10px 20px;
	border: 0;
	background-color: var(--color-secondary);
}

.comments .reply-form .btn-primary:hover {
	color: var(--color-secondary);
	background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	color: #fff;
	background-size: cover;
	font-size: 16px;
	padding: 80px 0 60px 0;
	position: relative;
}

.footer:before {
	content: "";
	background: var(--color-default);
	position: absolute;
	inset: 0;
	background-image: url('../img/footer-back.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size:cover;
	background-attachment: fixed;
}

.footer .footer-content .footer-info {
	margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
	font-size: 18px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 400;
	text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
	color: var(--color-primary);
}

.footer .footer-content .footer-info p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: #fff;
}

.footer .footer-content .social-links a {
	font-size: 16px;
	display: inline-block;
	background: var(--color-default-1);
	color: #fff;
	line-height: 1;
	margin-right: 8px;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
	background: var(--color-primary);
	text-decoration: none;
}
.footer .footer-content .social-links a:hover>i::before, .footer .footer-content .social-links a:hover>i {
	
	color: var(--color-default-1);
}

.footer .footer-content h4 {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-content .footer-links {
	margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-content .footer-links ul li {
	padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-content .footer-links ul a {
	color: rgba(255, 255, 255, 0.6);
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer .footer-legal .copyright {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
	padding-top: 4px;
	font-size: 16px;
	color: #fff;
}

.footer .footer-legal .credits a {
	color: #666666;
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
	color: var(--color-default-1);
}
.header .bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
	color: var(--color-default-1);
}
.recent-blog-posts .bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
	color: var(--color-primary);
}
.section-header a, .section-header a:visited{
	color: var(--color-secondary)!important;
}
.section-bg .section-header h2, .section-bg .section-header p {
	color: white;
}
.section-bg .section-header a, .section-bg .section-header a:visited {
	color: var(--color-default-1)!important;
}
.section-header a:hover, .section-header a:focus, .section-header a:active{
	color: var(--color-secondary)!important;
	text-decoration: underline;
}
.section-bg .section-header a:hover, .section-bg .section-header a:focus, .section-bg .section-header a:active {
	color: var(--color-default-1)!important;
	text-decoration: underline;
}
.accordion {
	border-radius: 0px!important;
	box-sizing: border-box;
}

.accordion-item {
	margin-bottom: 0px;
	border-radius: 0px!important;
}
.accordion-item button {
	font-weight: 700;
	border-radius: 0px!important;
}
.accordion-body p {
	padding:10px;
	margin-bottom: 0px;
	line-height: 1.5;
}
@media screen and (min-width: 1200px) {
	.accordion-body p {
		padding:10px;
		margin-bottom: 0px;
		line-height: 1.5;
		text-align: justify;
	}
}
.accordion-button:not(.collapsed) {
	color: var(--color-default);
	background-color: #f3f3f3;
}
.accordion-button::after {
	color: var(--color-default)!important;
}
.accordion-button:focus {
	box-shadow: none;
	border-color: rgba(0,0,0,0);
}
a.sia {
	line-height: 2;
	color: var(--color-default)!important;
}
table a.sia {
	line-height: 2;
	color: var(--color-default)!important;
}
a.sia i {
	margin-right: 5px;
}
a.sia, a.sia:visited {
	color: var(--color-default)!important;
	font-size: 16px;
}
a.sia:hover, a.sia:focus, a.sia:active {
	color: var(--color-secondary)!important;
}
h4 {
	font-size: 20px;
}
.sluzbenik ul li {
	font-size: 18px;
}
.sluzbenik i {
	width: 30px;
	text-align: center;
}

.sidebar-poveznica a, .sidebar-poveznica a:visited {
	display:block;
	line-height: 2;
	padding: 8px 0px;
	border-bottom: 1px solid #f3f3f3;
}
.sidebar-poveznica:first-child a {
	padding-top: 0px;
}
.sidebar-poveznica:last-child a {
	border-bottom: none;
	padding-bottom: 0px;
}
fieldset {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
fieldset[disabled] {
	display:none;
}
.accordion-button:not(.collapsed)::after {
	background-image: var(--bs-accordion-btn-icon)!important;
}
.modal-backdrop {
	opacity: .8!important;
}
/*
* For rendering images inserted using the image plugin.
* Includes image captions using the HTML5 figure element.
*/
figure.image {
	display: inline-block;
	border: 1px solid gray;
	margin: 0 2px 0 1px;
	background: #f5f2f0;
}

figure.align-left {
	float: left;
}

figure.align-right {
	float: right;
}

figure.image img {
	margin: 8px 8px 0 8px;
}

figure.image figcaption {
	margin: 6px 8px 6px 8px;
	text-align: center;
}

/*
Alignment using classes rather than inline styles
check out the "formats" option
*/

img.align-left {
	float: left;
}

img.align-right {
	float: right;
}
.get-started .accordion ul {
	list-style: none;
	padding: 10px;
}
.load-more {
	display: none;
}
.btn-more {
	border: none;
	padding: .7rem 2rem;
	margin: 20px auto;
	display: block;
	color: white;
	background-color: var(--color-secondary)!important;
	box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.3);
}
.btn-more:hover, .btn-more:active, .btn-more:focus {
	background-color: var(--color-primary)!important;
}
table {
	font-size: 16px!important;
	background-color: white;
}
table th {
	font-size: 16px!important;
}
#myTab a.nav-link {
	color: var(--color-default);
}
#myTab a.nav-link.active {
	color: var(--color-secondary);
}
#myTabContent {
	padding:10px;
	background-color: white;
	border: 1px solid #dee2e6;
	border-top: none;
}
#myTabContent table {
	margin: 0px;
	font-size: 16px!important;
	margin-bottom: 20px;
}
#myTabContent table:last-child {
	margin-bottom: 0px;
}
#myTabContent table thead {
	font-size: 16px;
	line-height: 2;
}
#myTabContent p {
	padding: 0px;
	min-height: 0px;
}
table a.sia  {
	line-height: 1;
}
table a.sia i {
	margin-right: 0px;
}
li.sidebar-poveznica {
	padding: 0px!important;
}
li.nav-item {
	cursor: pointer;
}
.at-share-tbx-element .at-share-btn {
	margin: 0px 5px 0px 0px!important;
}
.img-fluid {
	width: 100%;
}
.map iframe {
	padding: 24px;
	box-shadow: 0 0 25px rgb(0 0 0 / 8%);
	background-color: white;
}
.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--color-primary);
	--bs-btn-border-color: var(--color-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--color-secondary);
	--bs-btn-hover-border-color: var(--color-secondary);
	--bs-btn-focus-shadow-rgb: 49,132,253;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--color-secondary);
	--bs-btn-active-border-color: var(--color-secondary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: grey;
	--bs-btn-disabled-border-color: grey;
	border-radius: 0px;
	box-shadow: 0px 2px 20px rgb(0 0 0 / 20%);
}
.content a:hover, .content a:focus, .content a:active {
	color: var(--color-secondary);
	text-decoration: underline;
}
.objave-side .sidebar-poveznica a {
	line-height: 1.3;
}
.objave-side .sidebar-poveznica a:first-child {
	border: none;
}
.accordion-body {
	overflow: auto;
}
.sidebar-poveznica {
	clear: both;
}
.aktivni-tablica {
	margin-bottom: 40px;
	width: 100%; 
	background-color: white;
}
.aktivni {
	background-color: var(--color-primary)!important;
	color: white;
}
form label {
	font-weight: 700!important;
}
.ustrojstvo {
	box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
	margin-top: 10px;
	border-radius: 4px;
	overflow: hidden;
}
.ustrojstvo thead tr:first-child {
	color: white;
	background-color: var(--color-secondary);
	border-radius: 4px 4px 0px 0px;
}
.ustrojstvo td {
	border: none!important;
	padding: 4px 12px!important;
}
.ustrojstvo th {
	padding: 8px 12px!important;
}
.post-item, .service-item, .portfolio-content {
	border-radius: 4px;
	overflow: hidden;
}