/* Modern CSS Reset */
/* === HARD RESET CSS === */

/* Reset all margins, paddings, borders */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* Remove default font styling */
html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	background: #fff;
	color: #000;
	font-family: "Lexend", "Inter", sans-serif !important;
}

/* Remove all default list styles */
ol,
ul {
	list-style: none;
}

/* Remove quote styles */
blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
}

/* Remove default table spacing */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Remove default link styles */
a {
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease-in-out;
}

a:hover {
	color: #00B9F2;
}

/* Remove outline and inherit font for form elements */
input,
textarea,
select,
button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
}

/* Images, media: responsive by default */
img,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Buttons should have pointer */
button {
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

/* Remove all headings default spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: normal;
}

/* Remove strong/em default styles */
em,
i,
strong,
b {
	font-style: normal;
	font-weight: normal;
}

/* Clear floats (if needed) */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

img.wpml-image {
	height: 27px;
	border-radius: 100%;
	width: 27px;
	object-fit: cover;
}

img.current-image {
	width: 32px;
	height: 32px;
	border-radius: 100%;
	object-fit: cover;
}

.button {
	display: flex;
	height: 44px;
	padding: 5px 17px 5px 17px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border-radius: 8px;
	background: #FFCB05;
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 22px;
	border: 2px solid #FFCB05;
	/* 137.5% */
}

.button:hover {
	border: 2px solid #FFCB05;
	background: #fff;
	color: #FFCB05;
}

/*header*/

#site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(2.5px);
	z-index: 99;
}

#site-header.dark {
	background: #F5F5F5;
	backdrop-filter: blur(2.5px);
}

.header-inner.section-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1104px;
	margin: auto;
	padding: 20px 0;
}

.mobile-buttons-holder {
	display: none;
}

.closer {
	display: none;
}

.logo {
	width: 115px;
	height: 48px;
}

.logo svg {
	display: block;
	height: 100%;
}

.header-navigation-wrapper .primary-menu {
	display: flex;
	align-items: center;
}

.header-navigation-wrapper .primary-menu .sub-menu {
	display: none;
}

.header-navigation-wrapper .primary-menu .menu-item-has-children {
	position: relative;
}

.header-navigation-wrapper .primary-menu .menu-item-has-children .icon {
	background: url('../images/chevron.png') no-repeat center;
	background-size: cover;
	width: 12px;
	height: 6px;
	display: inline-block;
	margin-left: 8px;
}

.header-navigation-wrapper .primary-menu .menu-item-has-children a,
.header-navigation-wrapper .primary-menu .menu-item-has-children span.icon {
	display: inline-block;
	vertical-align: middle;
}

.header-navigation-wrapper .primary-menu .menu-item-has-children:hover .sub-menu {
	display: block;
	position: absolute;
	top: 38px;
	left: 0;
	white-space: nowrap;
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(2.5px);
	padding: 12px;
	border-radius: 8px;
}

#site-header.dark .header-navigation-wrapper .primary-menu .menu-item-has-children:hover .sub-menu {
	background: #F5F5F5;
}

.header-navigation-wrapper .primary-menu .menu-item-has-children:hover .sub-menu li {
	margin: 0 !important;
	padding: 3px 0;
}

.header-navigation-wrapper .primary-menu .menu-item-has-children .sub-menu li a:hover {
	color: #A6CE39;
}

#site-header.dark .primary-menu li a {
	color: #002341;
}

#site-header.dark .primary-menu li.button-contact a {
	background: #fff;
}

#site-header.dark .header-navigation-wrapper .primary-menu .menu-item-has-children .icon {
	background: url(../images/chevron_dark.png) no-repeat center;
}

.header-navigation-wrapper .primary-menu-wrapper {
	display: flex;
	align-items: center;
}

.script-switcher {
	position: relative;
	display: inline-block;
}

.script-switcher .dropdown-toggle {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	padding: 5px 0px;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: 20px;
}

.script-switcher .dropdown-menu {
	position: absolute;
	background-color: white;
	min-width: 160px;
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	list-style: none;
	padding: 5px 0;
	margin: 0;
	border-radius: 4px;
}

.script-switcher .dropdown-menu li {
	padding: 6px 12px;
}

.script-switcher .dropdown-menu li a {
	color: black;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.script-switcher .dropdown-menu li:hover {
	background-color: #f1f1f1;
}

/*Home*/
.hero {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
	background-position: center bottom;
}

.hero:before {
	width: 100%;
	height: 100%;
	display: block;
	content: '';
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
}

.hero:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 46px;
	background: url('../images/hero-after.png') no-repeat top center;
	background-size: 100% 100%;
}

.hero img {
	display: block;
	width: 100%;
}

.hero .content {
	color: #FFF;
	text-align: center;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.44);
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	position: absolute;
	bottom: 30%;
	left: 0;
	right: 0;
	margin: auto;
	font-family: "Lexend", "Inter", sans-serif !important;
}

.hero .content h1 {
	color: #FFF;
	text-align: center;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.44);
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

#home-page {
	display: block;
}

.primary-menu li {
	margin: 0 12px;
	padding: 10px 0;
}

.primary-menu li:last-child {
	margin: 0 0 0 28px;
}

.primary-menu li a {
	color: #FFF;
	text-align: center;
	font-family: "Lexend", "Inter";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.primary-menu li a:hover {
	color: #A6CE39;
}

.primary-menu li.button-contact a {
	border-radius: 8px;
	border: 1px solid #A6CE39;
	background: rgba(51, 51, 51, 0.16);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
	padding: 9px 20px;
	min-width: 104px;
}

.primary-menu li.button-contact a:hover {
	background-color: #A6CE39;
	color: #fff;
}

.masonry {
	width: 100%;
	background: rgba(166, 206, 57, 0.20) url('../images/bg_kalocsai.png') no-repeat center;
	background-size: cover;
}

.masonry-inner {
	margin: auto;
	display: block;
	max-width: 1104px;
	padding: 80px 0;
}

.masonry-inner h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.masonry-inner h2 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 48px;
}

.masonry-holder {
	display: grid;
	grid-template-columns: calc(100% - 335px) 315px;
	gap: 10px;
	align-items: start;
}

.masonry-right {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	height: 100%;
}

.masonry-left .box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 10px;
}

.masonry-left .box.specific {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 10px;
	margin-bottom: 0;
}

.masonry-left .box .box-content.inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.box,
.box-content {
	overflow: hidden;
}

.box-content {
	display: flex;
}

.box-content img {
	width: 100%;
	height: 100% !important;
	height: auto;
	display: block;
	border-radius: 8px;
	object-fit: cover;
}

.about-us-content {
	display: flex;
	max-width: 1104px;
	margin: 0 auto;
}

.left-side {
	width: 50%;
}

.left-side ul {
	list-style: none;
	padding: 0;
}

.left-side li {
	cursor: pointer;
	margin-bottom: 24px;
	border-radius: 8px;
	transition: background 0.3s;
}

.left-side li:last-child {
	margin-bottom: 0;
}

.left-side li span {
	display: block;
	padding: 30px 30px;
	background: #F5F5F5;
	margin-right: 24px;
	border-radius: 8px;
	transition: background 0.3s;
	color: #002341;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.left-side li:hover,
.left-side li.active {
	background: #FFCB05;
	border-radius: 8px 0 0 8px;
	color: #fff;
}

.left-side li:hover span,
.left-side li.active span {
	background: #FFCB05;
	border-radius: 8px 0 0 8px;
	color: #fff;
}

.right-side {
	flex: 1;
	min-height: 200px;
}

.tab-content {
	display: none;
}

.mobile-title {
	display: none;
}

.tab-content.active {
	display: block;
	height: 100%;
	padding: 20px;
	background: #fff;
	border-radius: 16px 16px 16px 16px;
	border: 8px solid #FFCB05;
}

.tab-content.active:hover {
	cursor: pointer;
}

.tab-content.tab-content-0.active {
	border-radius: 16px 16px 16px 16px;
}

.right-side {
	background-color: #FFCB05;
	border-radius: 16px 16px 16px 16px;
}

/*.tab-content.tab-content-4.active {
	border-radius: 16px 16px 16px 0;
}*/

.tab-inner-holder {
	position: relative;
	padding: 16px;
	height: 100%;
	display: flex;
	align-items: center;
}

.tab-content .tab-inner-box {
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.70);
	backdrop-filter: blur(5px);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	color: #002341;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	border-radius: 8px;
	/* 133.333% */
}

.tab-content .tab-inner-box .more {
	color: #002341;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.tab-box {
	margin-bottom: 20px;
	display: block;
}

.about-us {
	width: 100%;
}

.about-us-inner {
	max-width: 1104px;
	margin: auto;
	padding: 80px 0;
}

.about-us-inner h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.about-us-inner h2 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 24px;
}


.info-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #002341;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-top: 24px;
	padding: 16px;
	border-radius: 8px;
	background: #F5F5F5;
}

.investment {
	width: 100%;
	background: rgba(255, 247, 181, 0.62);
}

.investment .top-image {
	width: 100%;
}

.investment .top-image img {
	width: 100%;
	display: block;
}

#home-page .investment-content {
	margin: auto;
	display: block;
	max-width: 1104px;
}

.investment-content .investment-inner {
	max-width: 1104px;
	margin: auto;
	display: block;
	padding: 80px 0;
	display: flex;
}

.investment-left-content {
	width: 45%;
	padding-right: 68px;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.investment-right-content {
	width: 55%;
}

.investment-right-content img {
	display: block;
	max-width: 100%;
}

.investment-left-content h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 8px;
}

.investment-left-content h2 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 16px;
}

.investment-left-content p {
	margin-bottom: 42px;
}

.investment-left-content a {
	border-radius: 8px;
	background: #FFCB05;
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 22px;
	padding: 11px 18px;
	display: inline-block;
	border: 2px solid #FFCB05;
}

.investment-left-content a:hover {
	background: #fff;
	color: #FFCB05;
}

.investment-left-content p:last-child {
	margin-bottom: 0;
}


.manifest {
	width: 100%;
}

.manifest-inner {
	max-width: 1104px;
	width: 100%;
	margin: auto;
	padding: 80px 0 48px;
}

.action-headline {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.manifest-inner h4 {
	color: #A6CE39;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 8px;
}

.manifest-inner h2 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 16px;
}

.manifest-inner .action-headline {
	margin-bottom: 48px;
}

.manifest-inner .action-headline h2 {
	margin-bottom: 0;
}

.manifest-inner-content {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.manifest-left {
	max-width: 49%;
}

.manifest-left .post-right-box-holder {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 0 12px 12px;
}

.manifest-left .post-inner {
	width: 540px;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
	align-self: stretch;
	border-radius: 10px;
	border: 1px solid #F5F5F5;
	background: #F5F5F5;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	cursor: pointer;
}

.manifest-left .post-inner .post-inner-image {
	width: 100%;
	border-radius: 10px;
	min-height: 317px;
}

.manifest-left .post-inner h3 {
	overflow: hidden;
	color: #002341;
	text-overflow: ellipsis;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 6px;
	/* 100% */
}

.manifest-left .post-inner .post-date {
	color: #A6CE39;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 6px;
}

.manifest-left .post-inner p {
	overflow: hidden;
	color: #002341;
	text-overflow: ellipsis;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	max-height: 50px;
}

.manifest-left .post-inner a {
	color: #002341;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.manifest-left .post-inner a:hover {
	color: #A6CE39;
}

.manifest-right {
	max-width: 49%;
}

.manifest-right .post-inner .post-left-image {
	width: 146px;
	height: 164px;
	border-radius: 8px;
	margin-right: 16px;
}

.manifest-right .post-inner .post-date {
	margin-bottom: 6px;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.manifest-right .post-inner h3 {
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 6px;
}

.manifest-right .post-inner p {
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 23px;
}

.manifest-right .post-inner a {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.manifest-right .post-inner .post-right-content {
	max-width: calc(100% - 162px);
}

#home-page .manifest-right .post-inner .post-right-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.manifest-right .post-inner {
	border-radius: 10px;
	background: #F5F5F5;
	display: flex;
	padding: 12px;
	flex: 1 0 0;
	align-self: stretch;
	margin-bottom: 24px;
	color: #002341;
	cursor: pointer;
}

.manifest-right .post-inner:hover {
	color: #fff;
	border-radius: 10px;
	background: #A6CE39;
}

.manifest-right .post-inner:last-child {
	margin-bottom: 0;
}

.mobile-button.button {
	display: none;
}

/* Contact */
#contact-page {
	padding-top: 168px;
}

#contact-page .content {
	margin: auto;
	display: block;
	max-width: 1104px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 80px;
}

.contact-left {
	max-width: 480px;
	width: 100%;
}

.contact-left h1 {
	color: #101828;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: 44px;
	letter-spacing: -0.88px;
	margin-bottom: 20px;
}

.contact-left p {
	color: #667085;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
}

.contact-left label {
	display: block;
	font-weight: bold;
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 5px;
}

.contact-left ul {
	padding-top: 48px;
}

.contact-left ul li {
	margin-bottom: 24px;
}

.contact-left ul li.double {
	display: flex;
	justify-content: space-between;
}

.contact-left ul li.double .half {
	max-width: 224px;
}

.contact-left input[type="text"],
.contact-left input[type="email"],
.contact-left input[type="tel"],
.contact-left textarea {
	width: 100%;
	border-radius: 8px;
	border: 1px solid #D0D5DD;
	background: #FFF;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	height: 48px;
	color: #667085;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding: 0 15px;
}

.contact-left input[type="checkbox"] {
	border: 1px solid #D0D5DD;
	border-radius: 6px;
	width: 20px;
	height: 20px;
	appearance: auto;
	overflow: hidden;
}

.contact-left textarea {
	height: 128px;
	resize: none;
}

.contact-left .wpcf7-list-item {
	margin: 0;
}

.contact-left .accept p {
	display: flex;
	align-items: center;
}

.contact-left .accept label {
	color: #667085;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-left: 12px;
}

.contact-left .wpcf7-not-valid-tip {
	font-size: 12px;
}

.contact-left input[type="submit"] {
	width: 100%;
	border: 1px solid #FFCB05;
	background-color: #FFCB05;
	color: #002341;
	font-family: "Inter";
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	border-radius: 8px;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	display: flex;
	padding: 12px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex: 1 0 0;
}

.contact-right {
	max-width: 520px;
	border-radius: 8px;
	overflow: hidden;
}

.contact-right img {
	display: block;
}

.bottom-content {
	width: 100%;
	background: linear-gradient(0deg, rgba(255, 247, 181, 0.62) 0%, rgba(255, 247, 181, 0.62) 100%), #F9FAFB;
	padding: 96px 0;
}

.bottom-content-inner {
	max-width: 1104px;
	margin: auto;
	text-align: center;
}

.bottom-content-inner h3 {
	color: #002341;
	text-align: center;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: 44px;
	letter-spacing: -0.88px;
	margin-bottom: 20px;
}

.bottom-content-inner p {
	color: #002341;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 24px;
}

.bottom-content-inner p:last-child {
	margin: 0;
}

.bottom-content-inner p a {
	color: #00B9F2;
}

/* Manifestacije */

.manifestacije-container {
	max-width: 1104px;
	margin: auto;
	display: block;
	padding: 80px 0;
}

.manifestacije-container .tabs {
	display: flex;
	margin-bottom: 40px;
}

.manifestacije-container .tabs .tab-btn {
	background: none;
	padding: 10px 0;
	color: #002341;
	text-align: right;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-right: 30px;
}

.manifestacije-container .tabs .tab-btn.active,
.manifestacije-container .tabs .tab-btn:hover {
	color: #A6CE39;
	border-bottom: 1px solid #A6CE39;
}


#manifest-page .posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

#manifest-page .posts-grid .post-inner {
	display: flex;
	width: 333px;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	border-radius: 10px;
	border: 1px solid #F5F5F5;
	background: #F5F5F5;
	cursor: pointer;
}

#manifest-page .posts-grid .post-inner .post-inner-image {
	width: 100%;
	border-radius: 10px;
	min-height: 200px;
}

#manifest-page .posts-grid .post-inner h3 {
	color: #002341;
	text-overflow: ellipsis;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	min-height: 40px;
	margin-bottom: 40px;
}

#manifest-page .posts-grid .post-inner .post-date {
	color: #A6CE39;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 5px;
}

#manifest-page .posts-grid .post-inner p {
	overflow: hidden;
	color: #002341;
	text-overflow: ellipsis;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	max-height: 50px;
	/* 150% */
}

#manifest-page .posts-grid .post-inner a {
	color: #A6CE39;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

#manifest-page .posts-grid .post-inner:hover {
	color: #fff;
	background: #A6CE39;
}

#manifest-page .posts-grid .post-inner:hover h3,
#manifest-page .posts-grid .post-inner:hover a,
#manifest-page .posts-grid .post-inner:hover p,
#manifest-page .posts-grid .post-inner:hover .post-date {
	color: #fff;
}

.middle-image {
	width: 100%;
}

.middle-image img {
	width: 100%;
	display: block;
}

/* vesti */

.posts-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.post-featured-full {
	width: 100%;
	padding: 20px;
	display: flex;
	height: 640px;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	flex: 1 0 0;
	border-radius: 10px;
	background: #F5F5F5;
	cursor: pointer;
}

.post-featured-full .post-thumbnail {
	width: 100%;
	border-radius: 8px;
	height: 430px;
}

.post-featured-full .date {
	color: #00B9F2;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 5px;
}

.post-featured-full h2 {
	color: #002341;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 5px;
}

.post-featured-full p {
	overflow: hidden;
	color: #002341;
	text-overflow: ellipsis;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 5px;
}

.post-featured-full .more {
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.post-featured-full .more:hover {
	color: #00B9F2;
}

.grid-posts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.inner-post-holder {
	height: calc(100% - 250px);;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.grid-post {
	display: flex;
	width: 530px;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	align-self: stretch;
	border-radius: 10px;
	background: #F5F5F5;
	cursor: pointer;
}

.grid-post .post-thumbnail {
	width: 100%;
	border-radius: 8px;
	height: 230px;
}

.grid-post .date {
	color: #00B9F2;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 5px;
}

.grid-post h3 {
	color: #002341;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 5px;
}

.grid-post p {
	overflow: hidden;
	color: #002341;
	text-overflow: ellipsis;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 5px;
}

.grid-post .more {
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.grid-post .more:hover {
	color: #00B9F2;
}

.grid-post:hover,
.post-featured-full:hover {
	background: #00B9F2;
}

.grid-post:hover h3,
.post-featured-full:hover h2,
.post-featured-full:hover p,
.grid-post:hover p,
.grid-post:hover .date,
.post-featured-full:hover .date,
.post-featured-full:hover .more,
.grid-post:hover .more {
	color: #fff;
}


/* Information */

#informations-page .container {
	max-width: 1104px;
	margin: auto;
	display: block;
	padding: 120px 0 80px;
}

.info-title {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 40px;
}

.info-title h1 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.info-box-holder {
	border-radius: 10px;
	background: #F5F5F5;
	display: flex;
	padding: 40px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	align-self: stretch;
	margin-bottom: 40px;
}

.info-box-holder .date {
	color: #00B9F2;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.info-box-holder h3 {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}

.info-box-holder .details {
	color: #00B9F2;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	cursor: pointer;
}

.info-box-holder .details.active {
	display: none;
}

.info-box-holder .documents {
	display: none;
}

.info-box-holder .documents.active {
	display: block;
}

.info-box-holder .documents p {
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 17px;
}

.info-box-holder .documents ul li {
	margin-bottom: 17px;
}

.info-box-holder .documents ul li a {
	color: #00B9F2;
	font-family: Lexend;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.info-box-holder .documents ul li a:hover {
	color: #FFCB05;
}

.info-title.members-title h2 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.info-title.members-title p {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.clanovi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 66px;
	margin: 30px 0;
}

.clan-box-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.opis.opis-general-info {
	line-height: 1.5;
}

.clan-box {
	border-radius: 16px;
	background: #F5F5F5;
	padding: 12px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.clan-box img {
	margin-bottom: 24px;
	width: 100%;
	display: block;
	border-radius: 8px;
}

.clan-box h3 {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 5px;
}

.clan-box .position {
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 16px;
}

.clan-box ul {
	margin-bottom: 80px;
}

.clan-box ul li {
	color: #667085;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

/* About us */

.top-block {
	width: 100%;
}

.top-block-inner {
	width: 100%;
	max-width: 1104px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 0;
}

.top-block-inner .top-block-left {
	width: 100%;
	max-width: 520px;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.top-block-inner .top-block-left h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 17px;
}

.top-block-inner .top-block-right {
	max-width: 540px;
	width: 100%;
}

.middle-block {
	width: 100%;
	padding: 80px 0;
}

.middle-block-inner {
	margin: auto;
	display: block;
	max-width: 1104px;
}

.middle-box-center ul {
	display: flex;
	justify-content: space-between;
}

.middle-block-top {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 40px;
}

.middle-block-top h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 17px;
}

.middle-box-center {
	margin-bottom: 40px;
}

.middle-box-center ul li {
	display: flex;
	padding: 30px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	flex: 1 0 0;
	align-self: stretch;
	border-radius: 10px;
	background: #F5F5F5;
	max-width: 354px;
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.middle-block-bottom {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 40px;
}


.jurisdiction-block {
	width: 100%;
}

.jurisdiction-block-inner {
	width: 100%;
	max-width: 1104px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 0;
}


.jurisdiction-block-inner .jurisdiction-block-left {
	border-radius: 8px;
	overflow: hidden;
}

.jurisdiction-block-inner .jurisdiction-block-right {
	width: 100%;
	max-width: 420px;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	border-radius: 8px;
	overflow: hidden;
}

.jurisdiction-block-inner .jurisdiction-block-right h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.jurisdiction-block-inner .jurisdiction-block-right h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 17px;
}

.jurisdiction-block-inner .jurisdiction-block-right {
	max-width: 640px;
	width: 100%;
}

.jurisdiction-block-inner .jurisdiction-block-right ul li {
	background: url('../images/check_icon.png') no-repeat top left;
	padding-left: 29px;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 17px;
}

.jurisdiction-block-inner .jurisdiction-block-right ul li:last-child {
	margin-bottom: 0;
}

.bottom-block {
	width: 100%;
	padding: 80px 0 94px;
}

.bottom-block-inner {
	margin: auto;
	display: block;
	max-width: 1104px;
}

.bottom-block-top {
	margin-bottom: 40px;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.bottom-block-top h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 17px;
}

.yellow-section {
	background: #FFF7B5;
	width: 100%;
}

.yellow-block-inner {
	margin: auto;
	display: flex;
	max-width: 1104px;
	padding: 80px 0;
	justify-content: space-between;
	align-items: center;
}

.yellow-block-left {
	max-width: 680px;
	width: 100%;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.yellow-block-left h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.yellow-block-left h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 17px;
}

.yellow-block-left ul {
	margin-bottom: 30px;
}

.yellow-block-left ul li {
	background: url('../images/check_icon.png') no-repeat top left;
	padding-left: 29px;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 17px;
}

.yellow-block-left ul li:last-child {
	margin-bottom: 0;
}

.yellow-block-right {
	max-width: 400px;
	width: 100%;
}

.yellow-block-left p * {
	display: inline-block;
	vertical-align: middle;
}

.yellow-block-left .button {
	display: inline-block;
	vertical-align: middle;
	margin-left: 16px;
	line-height: 28px;
	padding: 5px 20px 5px 20px;
}

.yellow-block-left .button * {
	display: inline-block;
	vertical-align: middle;
}

.documents-section {
	width: 100%;
	padding: 80px 0;
}

.documents-block-inner {
	margin: auto;
	display: block;
	max-width: 1104px;
	width: 100%;
}

.documents-block-inner h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 20px;
}

.sliding-box {
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	flex: 1 0 0;
	border-radius: 8px;
	background: #F5F5F5;
}

.sliding-box svg {
	width: 24px;
}

.sliding-box h3 {
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 0;
}

.sliding-box h3 a:hover {
	color: #00B9F2;
}

.sliding-box p {
	color: #002341;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.sliding-box p a:hover {
	color: #00B9F2;
}

.slider-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 100%;
	overflow: hidden;
	max-width: 97%;
	overflow: hidden;
	margin: auto;
}

.slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	/* Firefox */
}

.slider::-webkit-scrollbar {
	display: none;
	/* Chrome/Safari */
}

.sliding-box {
	flex: 0 0 calc((100% - 40px) / 3);
	/* 3 boxa sa 2x20px gap */
	box-sizing: border-box;
}


.arrow {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	padding: 10px;
	z-index: 1;
	width: 64px;
}

.arrow.left {
	margin-right: 10px;
}

.arrow.right {
	margin-left: 10px;
}

#other-documents-page {
	padding: 120px 0 0px;
}

.documents-top-block {
	width: 100%;
	padding-bottom: 80px;
}

.documents-top-block-inner {
	margin: auto;
	display: block;
	max-width: 1104px;
	width: 100%;
}

.documents-top-block-inner h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.documents-top-block-inner h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 17px;
}

.documents-block-content {
	padding: 40px;
	gap: 20px;
	align-self: stretch;
	border-radius: 10px;
	background: #F5F5F5;
	color: #002341;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.documents-block-content p,
.documents-block-content .other-title,
.documents-block-content ul li {
	margin-bottom: 17px;
}

.documents-block-content a {
	color: #00B9F2;
	text-decoration: underline;
	font-weight: normal;
	line-height: 1;
}

.documents-block-content a:hover {
	color: #FFCB05;
}

/* Investment */

#investments-page {
	padding: 0 0 80px;
}

.investment-page-inner {
	max-width: 1104px;
	margin: auto;
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	padding: 80px 0 0;
}

.investment-content {
}

.investment-content-all {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.investment-box-holder {
	position: relative;
}

.investment-box-holder .investment-image-holder {
	border: 1px solid #F5F5F5;
	border-radius: 8px;
	padding: 5px;
}

.investment-box-holder .investment-image {
	width: 100%;
	height: 222px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.investment-content .pagination,
.manifestacije-container .pagination {
	clear: both;
	border-top: 1px solid #f5f5f5;
	padding-top: 40px;
	margin-top: 40px;
	display: flex;
	align-items: center;
}

.manifestacije-container .pagination {
	margin-top: 20px;
	padding-top: 20px;
}

.investment-content .pagination li {
	font-size: 20px;
	margin-right: 20px;
}

.manifestacije-container .pagination a.page-numbers,
.manifestacije-container .pagination .current {
	font-size: 18px;
	margin-right: 10px;
}


.investment-content .pagination li a,
.manifestacije-container .pagination a.page-numbers {
	color: #101828;
	width: 30px;
	height: 30px;
	display: block;
	text-align: center;
	line-height: 30px;
}

.manifestacije-container .pagination .prev.page-numbers {
	display: none;
}

.manifestacije-container .pagination .next.page-numbers {
	display: none;
}

.investment-content .pagination li a:hover,
.investment-content .pagination li.current span {
	background-color: #00B9F2;
	color: #fff;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	display: block;
	text-align: center;
	line-height: 30px;
}

.manifestacije-container .pagination a:hover,
.manifestacije-container .pagination .current {
	background-color: #A6CE39;
	color: #fff;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	display: block;
	text-align: center;
	line-height: 30px;
}

.investment-content .pagination li a.prev.page-numbers,
.investment-content .pagination li a.next.page-numbers {
	display: none;
}

.investment-box-holder a {
	position: absolute;
	margin: auto;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	border-radius: 68px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
	color: #FFF;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	max-width: 120px;
	width: 100%;
	padding: 10px;
	text-align: center;
	display: none;
}

.investment-box-holder:hover a {
	display: block;
}

.investment-box-holder h4 {
	color: #00B9F2;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.investment-box-holder h4::first-letter {
	text-transform: uppercase;
}

.investment-box-holder h3 {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 13px;
}

.investment-sidebar {
	display: flex;
	width: 341px;
	padding: 20px;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
	gap: 40px;
	border-radius: 8px;
	border: 1px solid #F5F5F5;
}

.investment-sidebar li {
	padding: 20px;
	margin-bottom: 40px;
}

.investment-sidebar li * {
	margin-bottom: 20px;
}

.investment-sidebar li:last-child {
	margin-bottom: 0;
}

.investment-sidebar li a {
	color: #002341;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.investment-sidebar li a:hover {
	color: #00B9F2;
}

.investment-sidebar li h3 {
	color: #002341;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

/* Single investment */

#single-investment {
	padding: 120px 0 80px;
}

#single-investment .top-gallery {
	margin-bottom: 80px;
}

#single-investment .content {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	padding: 80px 0 0;
}

#single-investment .content p {
	margin-bottom: 24px;
}

#single-investment .meta {
	border-top: 1px solid #F5F5F5;
	margin: 22px 0 0;
	padding: 22px 0 0;
}

.investicija-single {
	margin: auto;
	display: block;
	max-width: 1104px;
	width: 100%;
}

.investicija-single h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.investicija-single h4:first-letter {
	text-transform: uppercase;
}

.znamenitosti .investicija-single h4 {
	color: #A6CE39;
	margin-bottom: 5px;
}

.investicija-single h1 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 20px;
}

.parcel {
	padding-bottom: 22px;
	margin-bottom: 22px;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	border-bottom: 1px solid #F5F5F5;
}

.parcel p strong {
	color: #002341;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 9px;
	display: block;
}


#site-content .type-post {
	max-width: 1104px;
	margin: auto;
	display: block;
	padding: 120px 0 80px;
}

#site-content .type-post .entry-content {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	padding-top: 80px;
}

#site-content .type-post .post-inner h3 {
	color: #A6CE39;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

#site-content .type-post .post-inner.vesti h3 {
	color: #00B9F2;
}

#site-content .type-post .post-inner h1 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 20px;
}

#site-content .type-post .entry-content p {
	margin-bottom: 25px;
}

.swiper-slide {
	width: 100%;
	height: 600px;
	display: block;
	background-size: cover;
}

.moja-galerija-wrapper {
	width: 100%;
	max-width: 1104px;
	margin: auto;
}

.glavna-galerija .swiper-slide {
	background: #eee;
}

.glavna-galerija .swiper-slide img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 600px;
	border-radius: 8px;
	margin: auto;
}

.thumbs-galerija {
	margin-top: 15px;
}

.thumbs-galerija .swiper-slide {
	width: 200px;
	height: 120px;
	cursor: pointer;
	position: relative;
}

.thumbs-galerija .swiper-slide-thumb-active {
	opacity: 1;
	border: 2px solid #A6CE39;
	border-radius: 8px;
}

.vesti .thumbs-galerija .swiper-slide-thumb-active {
	border: 2px solid #00B9F2;
}


.thumbs-galerija .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.overlay-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.top-holder {
	width: 100%;
	display: flex;
	justify-content: space-between;
	color: #A6CE39;
	text-align: right;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 20px;
}

.vesti .moja-galerija-wrapper .swiper-button-next svg path,
.vesti .moja-galerija-wrapper .swiper-button-prev svg path {
	fill: #00B9F2;
}

.vesti .top-holder {
	color: #00B9F2;
}

.top-holder .date {
	font-weight: 400;
}

/* Kongresni turizam */

/* Investment */

#congress-page {
	padding: 0 0 80px;
}

.congress-page-inner {
	max-width: 1104px;
	margin: auto;
	display: grid;
	width: 100%;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	padding: 80px 0 0;
}

.congress-content {
	display: flex;
}

.congress-box-holder {
	position: relative;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.congress-box-holder h4 {
	color: #00B9F2;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.congress-box-holder h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.congress-box-holder .meta {
	padding: 40px 0 0;
}

.congress-box-holder .meta h3 {
	color: #002341;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 22px;
}

.congress-box-holder .moja-galerija-wrapper {
	max-width: 700px;
}

.congress-box-holder .glavna-galerija .swiper-slide img {
	max-height: 470px;
}

.congress-box-holder .thumbs-galerija .swiper-slide {
	height: 80px;
}

.congress-box-holder .top-gallery {
	margin-bottom: 80px;
}

.congress-sidebar {
	display: flex;
	width: 341px;
	padding: 20px;
	flex-direction: column;
	justify-content: start;
	align-items: flex-start;
	gap: 40px;
	border-radius: 8px;
	border: 1px solid #F5F5F5;
}

.congress-sidebar li {
	padding: 20px;
	margin-bottom: 20px;
}

.congress-sidebar li * {
	margin-bottom: 20px;
}

.congress-sidebar li:last-child {
	margin-bottom: 0;
}

.congress-sidebar li a {
	color: #002341;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.congress-sidebar li a:hover {
	color: #00B9F2;
}

.congress-sidebar li h3 {
	color: #002341;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.congress-sidebar li a:hover h3 {
	color: #00B9F2;
}

/* Turizam */

.wine-road {
	width: 100%;
	padding: 80px 0;
}

.wine-road-inner {
	max-width: 1104px;
	display: block;
	margin: auto;
	width: 100%;
}

.wine-road-inner h4 {
	color: #A6CE39;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.wine-road-inner h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 48px;
}

.cpt-slider-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 20px 0;
}

.cpt-slider-wrapper::after {
	content: "";
	background: linear-gradient(270deg, #FFF 18.75%, rgba(255, 255, 255, 0.00) 100%);
	width: 170px;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	z-index: 1;
}

.cpt-slider-wrapper::before {
	content: "";
	background: linear-gradient(90deg, #FFF 18.75%, rgba(255, 255, 255, 0.00) 100%);
	width: 170px;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 1;
}

.cpt-slider {
	overflow: hidden;
}

.cpt-grid {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

.cpt-item {
	min-width: calc(100% / 5 - 20px);
	/* 5 itema po prikazu */
	box-sizing: border-box;
	padding: 10px;
	flex-shrink: 0;
	display: flex;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
	border-radius: 10px;
	border: 1px solid #F5F5F5;
	background: #F5F5F5;
	margin: 0 10px;
	position: relative;
}

.cpt-item h4, .bpt-item h4 {
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	margin: 0;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
}

.slider-arrow.prev {
	left: 20px;
}

.slider-arrow.next {
	right: 20px;
}

.cpt-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
}

.cpt-slider-arrow.prev {
	left: 20px;
}

.cpt-slider-arrow.next {
	right: 20px;
}

.featured-image {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	margin-bottom: 18px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	transition: filter 0.3s ease-in-out;
}

.cpt-item .more, .bpt-item .more {
	display: none;
}

.cpt-item:hover, .bpt-item:hover {
	padding: 0;
}

.cpt-item:hover .featured-image, .bpt-item:hover .featured-image {
	position: absolute;
	height: 100%;
	border-radius: 8px;
	background: url(<path-to-image>) lightgray 50% / cover no-repeat;
	filter: blur(1.9500000476837158px);

}

.cpt-item:hover .more, .bpt-item:hover .more {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	border-radius: 68px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(2.450000047683716px);
	display: inline-block;
	margin: auto;
	max-width: fit-content;
	z-index: 9;
	color: #002341;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 10px;
}

.cpt-item:hover h4, .bpt-item:hover h4 {
	opacity: 0;
}

.sign-singh {
	width: 100%;
	padding: 80px 0;
}

.sign-singh .sign-singh-inner {
	max-width: 1104px;
	width: 100%;
	margin: auto;
	display: block;
}

.sign-singh .sign-singh-inner h4 {
	color: #A6CE39;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.sign-singh .sign-singh-inner h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 48px;
}

.cpt-item {
	min-width: calc(100% / 5 - 20px);
	display: flex;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
	align-self: stretch;
	border-radius: 10px;
	background: #F5F5F5;
	margin-bottom: 20px;
	min-height: 231px;
}

.sign-singh-block {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.sign-singh-block .featured-image {
	height: 205px;
	margin-bottom: 0;
}

.sign-singh-block .featured-image::after {
	content: "";
	width: 100%;
	height: 90px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(65, 84, 14, 0.65) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.sign-singh-block .cpt-item:hover .featured-image::after {
	display: none;
}

.sign-singh-block .cpt-item h4 {
	overflow: hidden;
	color: #FFF;
	text-overflow: ellipsis;
	text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.44);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	position: absolute;
	bottom: 24px;
	left: 24px;
	margin: 0;
}

.attraction {
	padding: 80px 0;
	width: 100%;
}

.attraction .attraction-inner {
	max-width: 1104px;
	width: 100%;
	margin: auto;
	display: block;
}

.attraction .attraction-inner h4 {
	color: #A6CE39;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 10px;
}

.attraction .attraction-inner h3 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.apt-slider-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 20px 0;
}

.apt-slider {
	overflow: hidden;
}

.apt-grid {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

.apt-item {
	min-width: calc(100% / 3 - 20px);
	box-sizing: border-box;
	padding: 10px;
	flex-shrink: 0;
	display: flex;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
	border-radius: 10px;
	border: 1px solid #F5F5F5;
	background: #F5F5F5;
	margin: 0 20px 0 0;
	position: relative;
}

.attraction .attraction-inner .apt-item h4 {
	overflow: hidden;
	color: #002341;
	text-overflow: ellipsis;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	/* 100% */
}

.apt-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
}

.apt-slider-arrow.prev {
	left: 20px;
}

.apt-slider-arrow.next {
	right: 40px;
}

.bpt-slider-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 20px 0;
}

.bpt-slider {
	overflow: hidden;
}

.bpt-grid {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

.bpt-item {
	min-width: calc(100% / 5 - 20px);
	box-sizing: border-box;
	flex-shrink: 0;
	display: flex;
	padding: 12px;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
	border-radius: 10px;
	border: 1px solid #F5F5F5;
	background: #F5F5F5;
	margin: 0 20px 0 0;
	position: relative;

}

.bpt-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	font-size: 24px;
	cursor: pointer;
	z-index: 10;
}

.bpt-slider-arrow.prev {
	left: 20px;
}

.bpt-slider-arrow.next {
	right: 40px;
}

.featured-image {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	margin-bottom: 18px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.apt-item .more {
	display: none;
}

.apt-item:hover {
	padding: 0;
}

.apt-item:hover .featured-image {
	position: absolute;
	height: 100%;
	border-radius: 8px;
	background: url(<path-to-image>) lightgray 50% / cover no-repeat;
	filter: blur(1.9500000476837158px);
}

.apt-item:hover .more {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	border-radius: 68px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.20);
	backdrop-filter: blur(2.450000047683716px);
	display: inline-block;
	margin: auto;
	max-width: fit-content;
	z-index: 9;
	color: #002341;
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	padding: 10px;
}

.apt-item:hover h4 {
	opacity: 0;
	display: block;
}


/*FOOTER*/
.footer-top {
	width: 100%;
	padding: 80px 0;
}

.footer-top .boxes {
	display: flex;
	max-width: 1104px;
	margin: auto;
	justify-content: space-between;
}

.footer-top .boxes .box {
	color: #002341;
	font-family: "Inter";
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.footer-top .boxes .box .logo {
	width: 220px;
	margin-bottom: 15px;
	height: auto;
}

.footer-top .boxes .box.box-one {
	border-right: 1px solid #00B9F2;
	padding-right: 168px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.footer-top .boxes .box.boxes-inner {
	display: flex;
}

.footer-top .boxes .box.boxes-inner .box {
	color: #002341;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.footer-top .boxes .box.boxes-inner .box h4 {
	color: #002341;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 13px;
}

.footer-top .boxes .box.boxes-inner .box ul li {
	margin-bottom: 13px;
}

.footer-top .boxes .box.boxes-inner .box.box-three {
	padding-left: 90px;
}


.footer-bottom {
	background: url('../images/footer-blue.png') no-repeat top center;
	background-size: cover;
	display: inline-block;
	width: 100%;
}

.footer-bottom-inner {
	padding: 72px 0 51px;
	background: url('../images/footer-yellow.png') no-repeat top center;
	background-size: cover;
	margin-top: 10px;
	display: inline-block;
	width: 100%;
}

.footer-bottom-content {
	margin: auto;
	max-width: 1104px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom-content p {
	font-size: 18px;
	font-weight: 400;
}

.footer-bottom-content ul {
	display: flex;
}

.footer-bottom-content ul li {
	margin-left: 40px;
}

.footer-socials img {
	max-width: 35px;
}

.footer-socials a:hover {
	opacity: 0.6;
}

.mobile-slider {
	display: none;

}

.desktop-only {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 52px;
}

.mobile-only {
	display: none;
}

.moja-galerija-wrapper .swiper-button-next:after,
.moja-galerija-wrapper .swiper-button-prev:after {
	display: none;
}

.mobile-image {
	display: none;
}

.desktop-image {
	display: block;
}

.moja-galerija-wrapper .swiper-button-next,
.moja-galerija-wrapper .swiper-button-prev {
	width: 44px;
}

.page-template-default .post-inner {
	width: 90%;
	max-width: 1104px;
	margin: auto;
	color: #002341;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
}

.page-template-default .post-inner p {
	margin-bottom: 25px;
}

.page-template-default .post-inner h1 {
	color: #002341;
	font-size: 44px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 20px;
}

.page-template-default .post-inner ul {
	margin-bottom: 25px;
}

.page-template-default .post-inner h3,
.page-template-default .post-inner h3 strong {
	font-size: 24px;
	font-weight: 700;
	line-height: 34px;
}

.page-template-default .post-inner h3 {
	margin-bottom: 20px;
}

.page-template-default .type-page {
	padding: 120px 0 80px;
}

.page-template-default .top-holder {
	display: none;
}

@media screen and (max-width: 1104px) and (min-width: 921px) {
	.script-switcher .dropdown-menu {
		right: 0;
	}

	.primary-menu li a {
		font-size: 12px;
	}

	.manifest-inner,
	#home-page .investment-content,
	.about-us-inner,
	.masonry-inner,
	.footer-top .boxes,
	.footer-bottom-content,
	.header-inner.section-inner,
	.manifestacije-container,
	.investment-page-inner,
	.investicija-single,
	.top-block-inner,
	.middle-block-inner,
	.jurisdiction-block-inner,
	.bottom-block-inner,
	.yellow-block-inner,
	.documents-block-inner,
	#informations-page .container,
	.documents-top-block-inner,
	.congress-page-inner,
	.wine-road-inner,
	.sign-singh .sign-singh-inner,
	.attraction .attraction-inner,
	#contact-page .content {
		max-width: 95%;
	}

	.manifest-left .post-inner {
		width: 100%;
	}

	.jurisdiction-block-inner .jurisdiction-block-right {
		max-width: 50%;
	}

	.grid-post {
		width: 100%;
	}

	.congress-box-holder .moja-galerija-wrapper {
		max-width: 52vw;
	}

	.contact-left, .contact-right {
		max-width: 48%;
	}

	.contact-left ul li.double .half {
		max-width: 48%;
	}
}


@media screen and (max-width: 920px) {
	.congress-sidebar {
		overflow-x: auto;
		white-space: nowrap;
		padding: 10px 0;
		border: none;
	}

	.congress-sidebar ul {
		display: flex;
		gap: 20px;
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.congress-sidebar li {
		flex: 0 0 auto;
		min-width: 200px;
		padding: 10px;
		border-radius: 6px;
	}


	.mobile-buttons-holder {
		display: flex;
		align-items: flex-end;
	}

	.closer {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
	}

	.mobile-buttons-holder .contact-top {
		border-radius: 8px;
		border: 1px solid #A6CE39;
		background: rgba(51, 51, 51, 0.16);
		box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.16);
		padding: 10px 20px;
		color: #fff;
	}

	.dark .mobile-opener path {
		stroke: #002341;
	}

	.mobile-buttons-holder .mobile-opener {
		border-radius: 8px;
		border: 1px solid #fff;
		padding: 0 5px;
		margin-left: 20px;
	}

	.dark .mobile-buttons-holder .mobile-opener {
		border: 1px solid #002341;
	}

	.dark .mobile-buttons-holder .contact-top {
		color: #002341;
	}

	.header-inner.section-inner {
		max-width: 90%;
	}

	.primary-menu li a {
		text-align: left;
		font-size: 14px;
	}

	.header-navigation-wrapper .primary-menu .menu-item-has-children:hover .sub-menu,
	.header-navigation-wrapper .primary-menu .menu-item-has-children:hover .sub-menu {
		position: relative;
		background: none;
		backdrop-filter: unset;
		top: 0;
		white-space: normal;
		text-align: left;
		width: 80%;
	}

	.header-navigation-wrapper .primary-menu-wrapper {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: 60vw;
		background: #FFCB05;
		padding: 80px 0;
		overflow: auto;
	}

	.primary-menu li.button-contact {
		display: none;
	}

	.header-navigation-wrapper .primary-menu {
		flex-direction: column;
		align-items: flex-start;
	}

	.header-navigation-wrapper .primary-menu-wrapper.active {
		display: block;
	}

	.hero {
		min-height: 700px;
	}

	.hero img {
		display: none;
	}

	.hero .content {
		margin: auto;
		max-width: 90%;
		display: block;
		font-size: 32px;
		text-align: left;
	}

	.manifest-inner {
		max-width: 90%;
		padding: 48px 0;
	}

	.manifest-inner-content {
		flex-direction: column;
	}

	.manifest-left,
	.manifest-right {
		max-width: 100%;
		margin-bottom: 24px;
	}

	.manifest-inner h2 {
		font-size: 28px;
	}

	.mobile-button.button {
		display: flex;
	}

	.manifest-left .post-inner {
		width: 100%;
	}

	.manifest-right .post-inner p {
		display: none;
	}

	.manifest-right .post-inner .post-right-content {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.investment .top-image {
		min-height: 370px;
	}

	.investment-content .investment-inner {
		max-width: 90%;
		flex-direction: column;
		padding: 48px 0;
	}

	.investment-left-content {
		width: 100%;
		padding: 0;
	}

	.investment-left-content h2 {
		font-size: 28px;
	}

	.investment-right-content {
		display: none;
	}

	.investment .top-image img {
		display: none;
	}

	.action-headline .button {
		display: none;
	}


	.about-us-inner {
		max-width: 90%;
		padding: 48px 0;
	}

	.about-us-inner h2 {
		font-size: 28px;
	}

	.about-us-content {
		display: block;
	}

	.about-us-content .left-side {
		display: none;
	}

	.about-us-content .right-side {
		display: block;
		border: none;
		background: none;
		border-radius: 0;
	}

	.info-box {
		flex-direction: column;
	}

	.info-box p {
		margin-bottom: 24px;
	}

	.info-box .button {
		width: 100%;
	}

	.mobile-title {
		display: block;
		background: #F5F5F5;
		padding: 16px;
		margin-bottom: 24px;
		border-radius: 8px;
	}

	.mobile-title.active {
		background: #FFCB05;
		border-radius: 8px 8px 0 0;
		margin-bottom: 0;
	}

	.mobile-title h3 {
		color: #002341;
		font-size: 20px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
	}

	.mobile-title.active h3 {
		color: #fff;
	}

	.tab-content {
		height: 100%;
		padding: 20px;
		background: #F5F5F5;
		border-radius: 0 0 8px 8px;
		border: 8px solid #F5F5F5;
		height: 400px;
		margin-bottom: 24px;
	}

	.tab-content.active {
		display: block;
		border: 8px solid #FFCB05;
		height: 400px;
		border-radius: 0 !important;
	}

	.masonry-inner {
		max-width: 90%;
		padding: 48px 0;
	}

	.masonry-inner h2 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.masonry-holder {
		display: none;
	}

	.mobile-slider {
		width: 100%;
		display: block;
	}

	.mobile-slider .swiper-wrapper {
		display: flex;
	}

	.mobile-slider .swiper-slide {
		width: 100%;
		flex-shrink: 0;
		border-radius: 8px;
	}

	.mobile-slider .box-content {
		width: 100%;
		height: 350px;
		/* ili koliko želiš visine */
		background-position: center;
		background-size: cover;
	}

	.mobile-slider .swiper-button-next:after,
	.mobile-slider .swiper-button-prev:after {
		display: none;
	}

	#contact-page {
		padding-top: 120px;
	}

	#contact-page .content {
		max-width: 90%;
		padding-bottom: 0;
	}

	.contact-right {
		display: none;
	}

	.contact-left h1 {
		font-size: 36px;
	}

	.contact-left ul li.double {
		flex-direction: column;
	}

	.contact-left ul li.double .half {
		max-width: 100%;
	}

	.contact-left ul li.double .half:first-child {
		margin-bottom: 24px;
	}

	.bottom-content {
		padding: 48px 0;
	}

	.bottom-content-inner {
		max-width: 90%;
	}

	.bottom-content-inner h3 {
		display: none;
	}

	.bottom-content-inner p strong {
		display: block;
		font-weight: 700;
	}


	.top-block-inner {
		padding: 48px 0;
		flex-direction: column;
		max-width: 90%;
	}

	.top-block-inner .top-block-left h3 {
		font-size: 36px;
	}

	.top-block-inner .top-block-left {
		margin-bottom: 40px;
	}

	.middle-block {
		padding: 0 0 48px;
	}

	.middle-block-inner {
		max-width: 90%;
	}

	.middle-block-top h3 {
		font-size: 36px;
	}

	.middle-box-center ul {
		flex-direction: column;
	}

	.middle-box-center ul li {
		margin-bottom: 20px;
		display: flex;
		align-items: center;
		flex-direction: row;
	}

	.middle-box-center ul li:last-child {
		margin-bottom: 0;
	}

	.middle-box-center ul li .image-block {
		width: 60px;
	}

	.middle-box-center ul li .content-block {
		width: calc(100% - 80px);
	}

	.jurisdiction-block-inner {
		max-width: 90%;
		padding: 0 0 48px;
		flex-direction: column;
	}

	.jurisdiction-block-inner .jurisdiction-block-right {
		order: 1;
		margin-bottom: 40px;
		max-width: 100%;
	}

	.jurisdiction-block-inner .jurisdiction-block-left {
		order: 2;
		max-width: 100%;
	}

	.jurisdiction-block-inner .jurisdiction-block-right h3 {
		font-size: 36px;
	}

	.bottom-block {
		padding: 0 0 48px;
	}

	.bottom-block-inner {
		max-width: 90%;
	}

	.bottom-block-top h3 {
		font-size: 36px;
	}

	.yellow-block-inner {
		padding: 48px 0;
		max-width: 90%;
		flex-direction: column;
	}

	.yellow-block-left {
		max-width: 100%;
		margin-bottom: 40px;
	}

	.yellow-block-left .button {
		width: 100%;
		margin: 20px 0 0;
		text-align: center;
	}

	.yellow-block-right {
		max-width: 100%;
	}

	.documents-section {
		padding: 48px 0;
	}

	.documents-block-inner {
		max-width: 90%;
	}

	.documents-block-inner > h3 {
		font-size: 36px;
	}

	.slider-wrapper {
		display: block;
	}

	.slider-wrapper .slider {
		margin: 0 40px;
	}

	.arrow {
		padding: 0;
		width: 30px;
		height: 30px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}

	.arrow.left {
		left: 0;
	}

	.arrow.right {
		right: 0;
	}

	.sliding-box {
		flex: 0 0 calc(100%);
		box-sizing: border-box;
	}

	#informations-page .container {
		max-width: 90%;
		overflow: hidden;
		padding-bottom: 0;
	}

	#informations-page .swiper-container {
		position: relative;
	}

	.info-title.members-title h2 {
		font-size: 36px;
	}

	.clanovi-grid {
		display: block;
		position: relative;
		overflow: hidden;
	}

	.swiper-wrapper {
		display: flex;
	}

	.swiper-slide {
		flex: 0 0 100%;
	}

	.desktop-only {
		display: none;
	}

	.mobile-only {
		display: block;
	}

	#informations-page .swiper-button-next:after,
	#informations-page .swiper-rtl .swiper-button-prev:after,
	#informations-page .swiper-button-prev:after,
	#informations-page .swiper-rtl .swiper-button-next:after {
		display: none
	}

	#informations-page .swiper-button-next {
		right: 20px;
		top: 30%;
		width: 40px;
	}

	#informations-page .swiper-button-prev {
		left: 20px;
		top: 30%;
		width: 40px;
	}

	.info-title {
		font-size: 36px;
	}

	.info-box-holder {
		padding: 30px;
	}

	.documents-top-block-inner {
		max-width: 90%;
	}

	.documents-top-block-inner h3 {
		font-size: 36px;
	}

	.documents-block-content {
		padding: 30px;
	}

	.investment-page-inner {
		max-width: 90%;
		padding-top: 48px;
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.manifestacije-container {
		max-width: 90%;
		padding: 48px 0;
	}

	.grid-posts {
		grid-template-columns: repeat(1, 1fr);
	}

	.grid-post {
		width: 100%;
	}

	.post-featured-full .post-thumbnail {
		height: 230px;
	}

	#manifest-page .posts-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	#manifest-page .posts-grid .post-inner {
		width: 100%;
	}

	.investment-content-all {
		grid-template-columns: 1fr;
	}

	.investment-sidebar {
		display: none;
	}

	.congress-page-inner {
		max-width: 90%;
		padding: 48px 0;
		display: flex;
		flex-direction: column;
	}

	.congress-box-holder .top-gallery {
		margin-bottom: 40px;
	}

	.congress-box-holder .moja-galerija-wrapper {
		max-width: 90vw;
	}

	.congress-box-holder h3 {
		font-size: 36px;
	}

	.congress-box-holder .thumbs-galerija .swiper-slide {
		max-width: 100px;
		height: 70px;
	}

	.wine-road {
		padding: 48px 0;
	}

	.wine-road-inner {
		max-width: 90%;
	}

	.wine-road-inner .title-block h3 {
		font-size: 36px;
	}

	.attraction .attraction-inner {
		max-width: 90%;
	}

	.attraction .attraction-inner h3 {
		font-size: 36px;
	}

	.apt-item,
	.bpt-item {
		min-width: 70%;
	}

	.attraction {
		padding: 48px 0 0;
	}

	#congress-page {
		padding-bottom: 0;
	}

	.cpt-slider-wrapper::before,
	.cpt-slider-wrapper::after {
		display: none;
	}

	.sign-singh {
		padding: 0;
	}

	.sign-singh .sign-singh-inner {
		max-width: 90%;
	}

	.sign-singh .sign-singh-inner h3 {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.sign-singh-block {
		grid-template-columns: 1fr;
	}

	#site-content .type-post {
		max-width: 90%;
	}

	#site-content .type-post .post-inner h1 {
		font-size: 36px;
	}

	.thumbs-galerija .swiper-slide {
		max-width: 100px;
		height: 70px;
	}

	.investicija-single {
		max-width: 90%;
	}

	.investicija-single h1 {
		font-size: 36px;
	}

	#single-investment .top-gallery {
		margin-bottom: 40px;
	}

	#single-investment .content {
		padding: 0;
	}

	.meta .parcel:last-child {
		margin-bottom: 0;
	}

	.glavna-galerija .swiper-slide img,
	.congress-box-holder .glavna-galerija .swiper-slide img {
		max-height: 35vh;
	}

	.mobile-image {
		display: block;
	}

	.desktop-image {
		display: none;
	}

	.footer-top {
		padding: 48px 0;
	}

	.footer-top .boxes {
		flex-direction: column;
		max-width: 90%;
	}

	.footer-top .boxes .box.box-one {
		border-bottom: 1px solid #00B9F2;
		border-right: none;
		padding: 0 0 48px;
		margin: 0 0 48px;
	}

	.footer-top .boxes .box.boxes-inner {
		flex-direction: column;
	}

	.footer-top .boxes .box.boxes-inner .box.box-three {
		padding-left: 0;
		padding-top: 48px;
	}

	.footer-bottom-inner {
		padding: 48px 0 100px;
	}

	.footer-bottom-content {
		flex-direction: column;
		max-width: 90%;
		text-align: center;
	}

	.footer-bottom-content p {
		margin-bottom: 40px;
		font-size: 10px;
	}

	.footer-bottom-content ul li {
		margin: 0 20px;
	}
}

.post-inner.manifestacije .top-holder, .post-inner.manifestacije-en .top-holder, .post-inner.manifestacije-hr .top-holder, .post-inner.manifestacije-hu .top-holder {
	display: flex;
	flex-direction: column;
	align-items: start;
}

.post-inner.manifestacije .top-holder .top-holder-item, .post-inner.manifestacije-hr .top-holder .top-holder-item, .post-inner.manifestacije-hu .top-holder .top-holder-item, .post-inner.manifestacije-en .top-holder .top-holder-item {
	display: flex;
}

.post-inner.manifestacije .top-holder .top-holder-item .item-label, .post-inner.manifestacije-hr .top-holder .top-holder-item .item-label, .post-inner.manifestacije-hu .top-holder .top-holder-item .item-label, .post-inner.manifestacije-en .top-holder .top-holder-item .item-label {
	color: #002341;
	margin-right: 10px;
	font-weight: 600 !important;
}

.post-inner.manifestacije .top-holder, .post-inner.manifestacije-hu .top-holder, .post-inner.manifestacije-hr .top-holder, .post-inner.manifestacije-en .top-holder {
	color: #000 !important;
	font-weight: 400 !important;
}

.bpt-grid, .apt-grid {
	transition: transform 0.5s ease;
}

.header-search-container {
	position: relative;
	display: inline-block;
	margin-left: 15px; /* Prilagođeno pored menija */
}

.search-icon {
	cursor: pointer;
	font-size: 18px;
	padding: 10px;
	color: #fff;
	transition: color 0.3s ease;
}

.search-icon:hover {
	color: #fff; /* Boja pri hover-u */
}

.search-field {
	position: absolute;
	top: 63px;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	padding: 10px;
	display: none;
	z-index: 1000;
	right: -11px;
	width: 315px;
	border-radius: 3px;
}

.search-field.active {
	display: block;
}

.header-search-container.mobile {
	display: block;
}

.header-search-container.mobile {
	display: none;
}


/* Prilagođavanje za mobilne uređaje */
@media (max-width: 768px) {
	.header-search-container.mobile {
		display: block;
	}

	.header-search-container.desktop {
		display: none;
	}
}

html:lang(hu-HU) .primary-menu li {
	margin: 0 9px !important;
}

form.searchwp-form input.swp-input--search {
	background-position: left 12px top 50%;
	padding-left: 2.7em;
	padding-right: 0px;
}

.header-footer-group.dark .search-icon {
	color: #002341;
}

.header-navigation-wrapper {
	display: flex;
	gap: 20px;
}

.breadcrumbs {
	margin-bottom: 15px;
	line-height: 24px;
	font-size: 20px;
}

.breadcrumbs .current {
	color: #A6CE39;
}

#site-header.header-footer-group.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.entry-content ul {
    list-style: disc;
    margin-left: 1.5em;
}
.entry-content ol {
    list-style: decimal;
    margin-left: 1.5em;
}
.entry-content strong {
    font-weight: bold;
}
.entry-content em {
    font-style: italic;
}
.entry-content p {
    margin-bottom: 1.2em;
}
