/* reset5 2011 opensource.736cs.com MIT */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
audio,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
menu,
meter,
nav,
output,
progress,
section,
summary,
time,
video {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
blockquote {
  display: block;
}
nav ul {
  list-style: none;
}
ol {
  list-style: decimal;
}
ul {
  list-style: disc;
}
ul ul {
  list-style: circle;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
ins {
  text-decoration: underline;
}
del {
  text-decoration: line-through;
}
mark {
  background: none;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input[type='submit'],
input[type='button'],
button {
  margin: 0;
  padding: 0;
}
input,
select,
a img {
  vertical-align: middle;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

.cf:before,
.cf:after {
  content: ' '; /* 1 */
  display: table; /* 2 */
}

.cf:after {
  clear: both;
}

.cl {
  clear: both;
}

span.bold {
  font-weight: bold;
}

/*-- end reset css --*/
a.link {
  color: var(--color-main);
  text-decoration: underline;
}

a.link.none {
  text-decoration: none;
}

a.link:hover {
  color: #000;
  text-decoration: none;
}

.index a.link {
  color: #fff;
}

* {
  box-sizing: border-box;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-main: #007dd4;
  --color-sub: #e5d4c0;
  --font-header: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;

  --spacing-main: 64px;
  --swiper-navigation-sides-offset: 2.5vw;
  --p-font-size: 1.7em;
}

@media screen and (max-width: 600px) {
  :root {
    --p-font-size: 1.6em;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --spacing-main: 48px;
    --p-font-size: 1.5em;
  }
}

body {
  background: #fff;
  color: #fff;
  font-size: 62.5%;
  font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Tahoma, sans-serif;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;

  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: 'lnum' 1;
  -moz-font-feature-settings: 'lnum=1';
  -ms-font-feature-settings: 'lnum' 1;
  -o-font-feature-settings: 'lnum' 1;
  -webkit-font-feature-settings: 'lnum' 1;
  font-feature-settings: 'lnum' 1;
}

/**/

.display_none {
  display: none !important;
}

header {
  background-color: #373e47;
  height: 150px;
  position: relative;
}

#logo {
  font-size: 2.4em;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  top: 35px;
  transform: translate(-50%, 0);
  width: 300px;
  z-index: 100;
}

#logo a {
  color: #fff;
  display: block;
  width: 100%;
  text-decoration: none;
}

#logo img {
  aspect-ratio: 4 / 1;
  width: 100%;
}

header > div.holder {
  display: flex;
  height: 150px;
  justify-content: space-between;
  position: relative;
  padding: 0 5vw;
  width: 100%;
  z-index: 10;
}

header > div.holder.bg {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.11) 76%, rgba(0, 0, 0, 0) 93%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.11) 76%, rgba(0, 0, 0, 0) 93%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.11) 76%, rgba(0, 0, 0, 0) 93%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99000000',endColorstr='#00000000',GradientType=0 );
}

header.show {
  background: var(--color-main);
  z-index: 10;
}

nav {
  align-items: center;
  display: flex;
}

#mainNav {
  display: flex;
  font-size: 1.8em;
  list-style: none;
}

#mainNav > li {
  position: relative;
}

#mainNav > li + li {
  margin-left: 32px;
}

#mainNav > li > a {
  line-height: 60px;
  color: #fff;
  padding: 0 16px;
  text-decoration: none;
}

#mainNav > li > a:hover {
  color: #000;
}

#mainNav ul {
  display: none;
  list-style: none;
  position: absolute;
  z-index: 100;
}

#mainNav > li:hover ul {
  display: block;
}

#mainNav ul li {
  border-top: 1px solid #fff;
  min-width: 200px;
}

#mainNav ul li + li {
  border-top: 1px solid #fff;
}

#mainNav ul a {
  background-color: var(--color-main);
  color: #fff;
  display: flex;
  font-size: 0.75em;
  padding: 16px 12px;
  text-decoration: none;
  transition: all 0.5s;
  white-space: nowrap;
}

#mainNav > li > a:hover {
  color: var(--color-main);
}

#mainNav ul a:hover {
  background-color: #000;
  color: #fff;
}

#mainNav2 {
  align-items: center;
  display: flex;
}

#mainNav2 > a {
  align-items: center;
  color: var(--color-sec);
  display: flex;
  font-size: 1.8em;
  padding: 16px;
  text-decoration: none;
  transition: all 0.5s;
}

#mainNav2 > a:hover {
  color: var(--color-main);
}

#cta_head {
  border: 1px solid #fff;
  border-radius: 4px;
  margin-right: 32px;
  transition: all 0.5s;
}

#cta_head:hover {
  border-color: transparent;
  color: #000;
}

#kontakt {
  margin-right: calc(40px + 42px);
}

#kontakt:hover {
  color: #000;
}

#zastave {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5em;
  list-style: none;
  margin-left: 32px;
  position: absolute;
  right: 5vw;
  top: 55px;
  transition: all 0.5s;
  width: 42px;
  z-index: 10;
}

#zastave:hover {
}

#zastave li:not(.active) {
  display: none;
}

#zastave:hover li:not(.active) {
  display: flex;
}

#zastave:hover li + li {
  margin-top: 8px;
}

#zastave a {
  align-items: center;
  aspect-ratio: 1 / 1;
  background-color: #373e47;
  border: 1px solid #fff;
  border-radius: 50%;
  color: var(--color-sec);
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 8px;
  text-decoration: none;
  transition: all 0.5s;
  width: 40px;
}

#zastave a:hover {
  background-color: var(--color-main);
  border: 2px solid #fff;
}

#ham {
  display: none;
}

/**/

main {
  background: linear-gradient(to bottom, rgba(34, 38, 43, 1) 0%, rgba(55, 62, 71, 1) 100%);
}

section {
  margin: calc(var(--spacing-main) * 0.75) auto 0;
  padding-bottom: calc(var(--spacing-main) * 0.75);
  width: min(90%, 1200px);
}

#index_slider {
  height: calc(100vh - 150px);
  margin: 0;
  padding: 0;
  width: 100%;
}

section.index.pretraga {
  background-color: #22262b;
  margin: 0;
  padding: 5vw;
  width: 100%;
}

section.index.nekretnine {
  background: linear-gradient(0deg, hsla(0, 0%, 95%, 1) 0%, hsla(0, 0%, 87%, 1));
  margin: 0;
  padding: 5vw;
  width: 100%;
}

section.index.nekretnine h2 {
  color: #000;
}

section.full {
  width: 100%;
}

section.full.pb0 {
  padding-bottom: 0;
}

div.text_section {
  padding-bottom: 48px;
}

div.text_section + div.text_section {
  padding: 48px 0;
}

div.text_section.white {
  background-color: #fff;
  color: #333;
}

div.text_section.grey {
  background: hsla(0, 0%, 93%, 1);
  background: linear-gradient(0deg, hsla(0, 0%, 95%, 1) 0%, hsla(0, 0%, 87%, 1) 100%);
  color: #000;
  width: 100%;
}

.white h2,
.white h3 {
  color: #333;
}

.grey h2,
.grey h3 {
  color: #000;
}

/**/

#index_banner {
  aspect-ratio: 2;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: block;
  margin: 0 auto calc(var(--spacing-main) * 0.75);
  max-width: 800px;
  position: relative;
  transition: all 0.5s;

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

  h2 {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);

    bottom: 0;
    left: 0;
    margin: 0 auto;
    padding: 5%;
    position: absolute;
    right: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    z-index: 2;
  }

  &:hover {
    border: 2px solid rgba(255, 255, 255, 1);

    h2 {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 0) 100%);
      padding-bottom: 7.5%;
    }
  }

  &.none {
    &::after {
      display: none;
    }

    &:hover {
      border: 2px solid transparent;
    }
  }
}

div.index_cta_holder {
  display: flex;
  justify-content: center;
  margin-top: calc(var(--spacing-main) * 0.5);

  a.cta {
    display: block;
    margin: 0;
  }
}

div.holder {
  margin: 0 auto;
  text-align: center;
  width: min(90%, 720px);
}

div.holder.full {
  width: min(100%, 720px);
}

div.holder_img:not(.full) {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  width: min(90%, 1200px);
}

div.holder_img.hotel {
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 1200px);
}

div.holder_img.full {
  margin: 0 auto;
  width: min(90%, 920px);
}

div.holder_img > div {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.45);
}

div.holder_img:not(.full) > div {
  aspect-ratio: 1 / 2;
  position: relative;
  transition: all 0.5s;
  z-index: 5;
}

div.holder_img.hotel > div {
  aspect-ratio: 3 / 2;
}

div.holder_img:not(.full) > div:hover {
  background-color: #aaa;
  scale: 1.1;
  z-index: 10;
}

div.holder_img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

div.holder_img span {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
  bottom: 0;
  color: #fff;
  display: block;
  font-size: 1.8em;
  padding: 32px 16px;
  position: absolute;
  text-align: center;
  transition: all 0.5s;
  width: 100%;
}

div.holder_img > div:hover span {
  background-color: rgba(0, 0, 0, 0.5);
}

div.holder_img > div:hover img {
}

div.holder + div.holder,
div.holder + div.holder_img,
div.holder_img + div.holder {
  margin-top: 48px;
}

div.holder.white {
  background-color: #fff;
  color: #000;
  width: 100%;
}

/**/

h1,
h2,
h3 {
  color: #fff;
  font-size: 4em;
  font-weight: 500;
  line-height: 120%;
  margin: 0 auto calc(var(--spacing-main) * 0.75);
  font-family: var(--font-header);
  text-align: center;
}

h1,
h2 {
}

h1 {
}

.full > h1 {
  width: min(90%, 1200px);
}

h1 > span {
  background-color: #373e47;
  display: inline-block;
  padding: 24px 32px;
}

h2 {
  font-size: 3em;
  margin: 0 auto calc(var(--spacing-main) * 0.75);
}

h3 {
  font-size: 2.4em;
  margin: 0 auto 32px;
}

.holder h3 {
  text-transform: uppercase;
}

p + h2,
ul + h2,
ol + h2 {
  margin-top: calc(var(--spacing-main) * 0.75);
}

p + h3 {
  margin-top: 32px;
}

p.text,
ul.text,
ol.text {
  line-height: 170%;
  font-size: var(--p-font-size);
  text-align: justify;
}

p.text.c {
  text-align: center;
}

p.text.headline {
  font-size: 1.8em;
}

p.text.napomena {
  border-top: 1px dashed #ddd;
  font-size: 1.4em;
  padding-top: 24px;
}

ul.text,
ol.text {
  margin-left: 20px;
}

p.text + p.text,
ul.text + p.text,
ol.text + p.text {
  margin-top: 24px;
}

p.text + ul.text,
p.text + ol.text {
  margin-top: 16px;
}

p.text.admin {
  margin-top: 24px;
}

p.text.admin + p.text.admin {
  margin-top: 8px;
}

/**/

#pretragaIndex {
  bottom: 5vh;
  display: block;
  left: 50%;
  padding: 32px;
  position: absolute;
  transform: translate(-50%, 0);
  width: min(100%, 1200px);
  z-index: 20;

  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ffffff',endColorstr='#1a000000',GradientType=0 );
  -webkit-box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.45);
  box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.45);
}

#pretragaIndex h2 {
  margin-bottom: 24px;
}

#pretragaIndex ul {
  display: flex;
  gap: 2px;
}

#pretragaIndex li {
  display: flex;
  flex: 1 1 calc(100% / 7);
  flex: 0 0 calc((100% - 452px) / 3);
  justify-content: space-between;
  line-height: 50px;
  list-style: none;
}

#pretragaIndex li.cijena {
  flex: 0 0 120px;
}

#pretragaIndex li:nth-last-of-type(-n + 2) {
  flex: 0 0 100px;
}

div.index_shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.95) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000',endColorstr='#e6000000',GradientType=0 );
  bottom: 0;
  height: 30vh;
  position: absolute;
  width: 100%;
  z-index: 10;
}

/**/

#index_nekretnine {
  display: grid;
  font-size: 1.8em;
  gap: 4px;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  margin: 0 auto;
  width: min(100%, 1200px);
}

#index_nekretnine > li {
  aspect-ratio: 400 / 267;
  background-color: #444;
  display: flex;
}

#index_nekretnine a {
  align-items: flex-end;
  color: #fff;
  display: flex;
  flex: 0 0 100%;
  justify-content: flex-end;
  position: relative;
  text-decoration: none;
}

#index_nekretnine a span {
  font-weight: 600;
  margin: 0 16px 16px 0;
  position: absolute;
}

#index_nekretnine img {
  display: block;
  width: 100%;
}

/**/

#gore {
  background: #373e47;
  border-top: 1px solid rgba(34, 38, 43, 1);
  padding: 5px 0;
  padding: 0;
  position: relative;
}

#gore > span {
  display: none;
}

#pretragaMain {
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  width: min(90%, 1200px);
}

ul.mainSerach {
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  list-style: none;
}

ul.mainSerach li {
  display: flex;
  justify-content: space-between;
}

#pretragaMain select.mala {
  width: calc(50% - 1px);
}

#pretragaMain select option {
  font-size: 1.1em;
  text-transform: uppercase;
}

#pretragaMain input.submit {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: background 1s, color 1s;
}

#pretragaMain input:hover,
#pretragaMain select:hover,
#pretragaMain input:hover {
  border: 1px solid var(--color-main);
}

#pretragaMain input.submit:hover {
  background-color: transparent;
}

#pretragaMain input::placeholder {
  color: #fff;
}

/**/

#pretragaIndex input,
#pretragaIndex select,
#pretragaMain input,
#pretragaMain select {
  background: #22262b;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.2em;
  font-weight: 600;
  margin: 0;
  padding: 12px 16px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s;
  vertical-align: baseline;
  width: 100%;
  z-index: 5;
}

#pretragaIndex input:hover,
#pretragaIndex select:hover,
#pretragaMain input:hover,
#pretragaMain select:hover {
  border: 1px solid #fff;
}

#pretragaIndex input.submit {
  background-color: var(--color-main);
  color: #fff;
}

#pretragaIndex input.submit:hover {
  background-color: transparent;
}

/* breadcrumb */

#navTo {
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  padding-top: calc(var(--spacing-main) * 0.75);
  position: relative;
  width: 90%;
}

#navTo ol {
  font-size: 1.3em;
  list-style-type: none;
  overflow: hidden;
  width: auto;
}

#navTo li {
  float: left;
  line-height: 22px;
  margin-right: 10px;
}

#navTo li:after {
  content: ' > ';
  color: #ddd;
}

#navTo li:last-of-type:after {
  content: '';
  padding: 1px 0;
}

#navTo li:last-of-type {
  margin-right: 0;
}

#navTo a {
  color: #fff;
  display: block;
  float: left;
  line-height: 22px;
  padding: 0 10px 0 0;
  text-align: left;
  text-decoration: underline;
}

#navTo li:first-of-type a {
  padding-left: 0;
}

#navTo a:hover {
  text-decoration: none;
}

/**/

#subNav {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-bottom: calc(var(--spacing-main) * 0.75);
}

#subNav li {
  flex: 1;
}

#subNav a {
  background-color: var(--color-main);
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 1.6em;
  justify-content: center;
  padding: 16px;
  text-decoration: none;
  text-wrap: nowrap;
  transition: all 0.5s;
}

#subNav a:hover {
  background-color: #373e47;
}

#subNav {
  border: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
  padding: 0;
}

#subNav::-webkit-scrollbar {
  display: none;
}

/**/

#nekretnineList {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  margin: 0 auto;

  > li {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    list-style: none;
    position: relative;

    a {
      display: block;
      position: relative;
      transition: all 0.5s;

      &:hover {
        color: #fff;

        img {
          scale: 1.1;
        }
      }

      img {
        aspect-ratio: 400 / 267;
        border: 1px solid rgba(255, 255, 255, 0.25);
        width: 100%;
        transition: all 0.25s;
      }

      span.napomena {
        align-items: center;
        border: 0px solid #fff;
        border-radius: 2px;
        color: #fff;
        display: flex;
        font-size: 1.3em;
        padding: 4px;
        position: absolute;
        right: 12px;
        text-decoration: none;
        top: 12px;
        text-transform: uppercase;

        &.top {
          background: var(--color-sub);
          color: #000;
        }

        &.novo {
          background: green;
        }

        &.prodano {
          background: var(--color-main);
        }
      }
    }

    > div {
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: space-between;

      h3 {
        font-family: var(--font-body);
        font-size: 1.7em;
        font-weight: 700;
        letter-spacing: -0.25px;
        line-height: 140%;
        margin-bottom: 10px;
        margin-top: 16px;
        padding: 0 12px;
        text-align: left;
        width: 100%;
      }

      > div {
        em {
          display: block;
          font-size: 1.7em;
          font-style: normal;
          margin-bottom: 16px;
          padding: 0 16px;
        }

        ul {
          display: flex;
          flex-wrap: wrap;
          list-style: none;
          margin: 16px 12px;

          li {
            align-items: center;
            border: 0;
            display: flex;
            flex: 0 0 100%;
            font-size: 1.4em;
            justify-content: space-between;
            line-height: 100%;
            margin: 0;
            padding: 5px 0;
            width: 100%;

            span {
            }
          }
        }

        div {
          background: rgba(0, 0, 0, 0.25);
          border-top: 1px solid rgba(255, 255, 255, 0.25);
          font-size: 2em;
          line-height: 130%;
          padding: 15px 15px 15px;
          width: 100%;

          p {
            color: #fff;
            float: left;
            line-height: 20px;
            text-align: right;
            width: 100%;

            &.akcija,
            &.staro {
              color: #f00;
              text-align: left;
              width: 50%;
            }

            &.staro {
              color: #aaa;
              padding-left: 20px;
              text-align: right;
              text-decoration: line-through;
            }
          }

          span {
            display: inline-block;
            font-size: 0.65em;
            height: 14px;
            line-height: 14px;
            text-align: right;
            width: 100%;

            p.akcija & {
              text-align: left;
            }
          }
        }
      }
    }
  }
}

/**/

#blogoviList {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(auto-fill, minmax(324px, 1fr));
  list-style: none;
  margin: 0 auto;

  > li {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    list-style: none;
    position: relative;

    a {
      display: block;
      position: relative;
      transition: all 0.5s;

      &:hover {
        color: #fff;

        img {
          scale: 1.1;
        }
      }

      img {
        aspect-ratio: 400 / 267;
        border: 1px solid rgba(255, 255, 255, 0.25);
        width: 100%;
        transition: all 0.25s;
      }
    }

    h3 {
      font-family: var(--font-body);
      font-size: 1.7em;
      font-weight: 700;
      height: 115px;
      letter-spacing: -0.25px;
      line-height: 140%;
      margin-bottom: 10px;
      margin-top: 16px;
      padding: 0 12px;
      text-align: left;
      width: 100%;
    }
  }
}

/* det */

div.blogovi_slika {
  margin: 0 auto;
  width: min(90%, 840px);

  img {
    display: block;
    object-fit: cover;
    width: 100%;
  }
}

div.blogovi_opis {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: clamp(2.4em, 2em + 1vw, 3.2em) 0;
  margin: 0 auto;
  width: min(90%, 720px);

  p {
    font-size: var(--p-font-size);
    line-height: 160%;
  }

  & + p {
    margin-top: 16px;
  }

  a {
    color: var(--color-main);

    &:hover {
      color: #fff;
    }
  }
}

/* pagination */

div.rez {
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  font-size: 1.45em;
  justify-content: space-between;
  letter-spacing: -0.25px;
  line-height: 160%;
  margin: 32px auto 0;
  text-align: center;
}

div.rez > div {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
}

span.cur,
span.ukupno {
  background: var(--color-main);
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  display: block;
  padding: 3px 8px;
  text-align: center;
}

span.ukupno {
  background: transparent;
  border: 0;
  color: #fff;
  margin-right: 0;
  padding: 3px 0;
}

a.brz {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: flex;
  padding: 3px 8px;
  transition: all 0.5s;
}

div.rez > div * + * {
  margin-left: 5px;
}

a.brz:link,
a.brz:visited {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

a.brz:hover,
a.brz:active {
  border: 1px solid rgba(255, 255, 255, 1);
  color: #fff;
  text-decoration: none;
}

/* det */

.nekretnineDet {
  margin: 0 auto;
  padding: 0 0 var(--spacing-main);
}

.nekretnineDet > div {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: min(90%, 1200px);
}

#nekretnineDetSlike {
  aspect-ratio: 3 / 2;
  display: flex;
  flex: 0 0 60%;
}

#nekretnineDetSlike > a {
  border: 1px solid #fff;
  display: flex;
  position: relative;
  transition: all 0.5s;
  width: 100%;
}

#nekretnineDetSlike > a:hover {
  border: 1px solid transparent;
}

#nekretnineDetSlike img {
  object-fit: cover;
  width: 100%;
}

#nekretnineDetSlike > a > div {
  align-items: center;
  background-color: var(--color-main);
  border-radius: 5px;
  bottom: 10px;
  display: flex;
  font-size: 1.5em;
  padding: 10px;
  position: absolute;
  left: 10px;
}

#nekretnineDetSlike > a > div span {
  align-items: center;
  color: #fff;
  display: flex;
}

#nekretnineDetSlike > a > div span.icon {
  height: 16px;
  margin-right: 5px;
  width: 16px;
}

#nekretnineDetData {
  color: #fff;
  flex: 0 0 35%;
  font-size: calc(var(--p-font-size) * 1.05);
}

#nekretnineDetData ul {
  list-style: none;
}

#nekretnineDetData li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 5px;
}

#nekretnineDetData li + li {
  margin-top: 16px;
  padding-bottom: 8px;
}

#nekretnineDetData li span {
  float: right;
}

#nekretnineDetData p {
  font-size: 1.8em;
  margin-top: calc(var(--spacing-main) * 0.75);
}

#nekretnineDetData p .akcija {
  color: red;
  float: left;
}

#nekretnineDetData p .staro {
  float: right;
  margin-left: 20px;
  text-decoration: line-through;
}

#nekretnineDetData p.opis {
  font-size: 1em;
  margin-top: 0;
}

#nekretnineDetData div.kontakti {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8em;
  font-weight: 600;
  gap: 16px;
  margin-top: calc(var(--spacing-main) * 0.75);
}

#nekretnineDetData div.kontakti > a {
  align-items: center;
  border: 1px solid var(--color-main);
  border-radius: 4px;
  color: var(--color-main);
  display: flex;
  flex: 1;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 1s;
}

#nekretnineDetData div.kontakti > a:hover {
  border-color: #fff;
}

#expose {
  background: var(--color-main);
  color: #fff !important;
}

#expose:hover {
  background: transparent;
}

#nekretnineDetData div.kontakti > a + a:hover {
  color: #fff;
}

div.kontakti span.icon {
  align-items: center;
  aspect-ratio: 1 / 1;
  display: flex;
  flex: 0 0 16px;
  margin-right: 12px;
}

/**/

#nekretnineDetData p.opis {
  font-size: 1em;
  margin-top: 0;
}

#nekretnineDetData div.kontakti {
}

/**/

.nekretnineDet2 {
  background-color: #fff;
  color: #333;
  padding: var(--spacing-main) 0;
}

.nekretnineDet2 > div {
  margin: 0 auto;
  width: min(90%, 720px);
}

section ul.karakteristike {
  list-style: none;
  margin: 0 auto;
  max-width: 920px;
}

section ul.karakteristike.male {
  max-width: 720px;
}

section ul.karakteristike li {
  border-bottom: 1px solid #eee;
  display: block;
  float: left;
  font-size: var(--p-font-size);
  line-height: 150%;
  margin: 0 10% 10px 0;
  width: 45%;
}

section ul.karakteristike.male li {
  border-bottom: 1px solid #777;
  margin: 0 0 10px 0;
  width: 100%;
}

section ul.karakteristike li:nth-child(2n) {
  margin-right: 0;
}

section ul.karakteristike li:nth-last-of-type(-n + 2) {
  margin-bottom: 0;
}

section ul.karakteristike li.none {
  border: 0;
}

section ul.karakteristike.male li.none {
  border-bottom: 1px solid #eee;
  margin-top: 10px;
}

section ul.karakteristike span {
  float: right;
}

section div.nekretnine_filter {
  border: 1px solid var(--color-main);
  font-size: var(--p-font-size);
  padding: 16px;
  margin-top: 32px;
}

#video {
  height: 0;
  margin: 0 0 30px 0;
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
  overflow: hidden;
}

#video iframe {
  background: #eee;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/**/

.nekretnineDet3 {
  color: #fff;
  padding: var(--spacing-main) 0;
}

.nekretnineDet3 > div {
  margin: 0 auto;
  width: min(90%, 720px);
}

.nekretnineDet2 h2 {
  color: #333;
  padding-left: 5vw;
  padding-right: 5vw;
}

/**/

#results_inner {
  flex: 0 0 100%;
  font-size: calc(var(--p-font-size) * 0.95);
  justify-content: center;
  line-height: 160%;
}

#results_inner.ok {
  border: 1px solid green;
  background-color: green;
  margin-bottom: 20px;
  padding: 20px;
}

#results_inner.err {
  border: 1px solid red;
  background-color: red;
  margin-bottom: 20px;
  padding: 20px;
}

fieldset.upit {
  padding: 0;
  width: 100%;
}

fieldset.upit.admin + fieldset.upit.admin {
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 20px;
}

fieldset.upit ol {
  padding: 0;
  list-style: none;
}

fieldset.upit li {
  display: flex;
  justify-content: space-between;
}

fieldset.upit li.provjera {
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

fieldset.upit li.sbmt {
  justify-content: flex-end;
  margin-top: 32px;
}

fieldset.upit li.chck {
  font-size: 0.9em;
}

fieldset.upit li.chck label {
  align-items: flex-start;
  display: flex;
  line-height: 125%;
}

fieldset.upit li.chck input {
  margin: 5px 12px 5px;
}

fieldset.upit li.chck span {
  line-height: 150%;
}

fieldset.upit li + li {
  margin-top: 10px;
}

fieldset.upit label {
  display: flex;
  font-size: calc(var(--p-font-size) * 0.95);
  line-height: 34px;
}

fieldset.upit label.spam {
  line-height: 160%;
}

fieldset.upit label.red {
  color: red;
}

fieldset.upit li.provjera div {
  align-items: center;
  display: flex;
}

fieldset.upit li.provjera div label {
  align-items: center;
  display: flex;
}

fieldset.upit label.provjera img {
  border: 1px solid #aaa;
  height: 34px;
}

fieldset.upit label.provjera span {
  font-size: calc(var(--p-font-size) * 0.95);
  line-height: 34px;
  padding: 0 10px;
}

fieldset.upit label.note {
  width: 100%;
}

fieldset.upit input.text,
fieldset.upit input.textx,
input.slike,
fieldset.upit select,
fieldset.upit textarea,
fieldset.upit input.submit,
#slikeBri,
#editor {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  box-sizing: border-box;
  color: #fff;
  float: right;
  font-family: var(--font-body);
  font-size: calc(var(--p-font-size) * 0.95);
  font-weight: 500;
  margin: 0;
  padding: 12px 16px;
  width: 100%;

  transition: all 1s;
}

#editor_holder {
  border: 1px solid var(--color-main);
  flex: 0 1 640px;
  height: 550px;

  .ql-toolbar.ql-snow {
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--color-main);
  }

  h1,
  h2,
  h3 {
    margin: 0 auto 32px;
    text-align: left;
  }

  p + h1,
  p + h2,
  p + h3 {
    margin-top: 32px;
  }
}

#editor {
  height: calc(550px - 42px);
}

.ql-editor {
  padding: 0 !important;
}

fieldset.upit input.textx {
  padding: 10px 15px;
  width: 100px;
}

fieldset.upit input.err {
  border: 1px solid #f00 !important;
}

fieldset.upit input.text.red,
fieldset.upit input.textx.red,
fieldset.upit select.red {
  border: 1px solid #f00;
}

fieldset.upit input.text[readonly],
fieldset.upit input.textx[readonly],
fieldset.upit input.text[disabled],
fieldset.upit input.textx[disabled],
fieldset.upit select[disabled],
fieldset.upit textarea[disabled] {
  background: #fff;
  border: 1px solid #000;
  color: #fff;
  font-weight: 500;
  opacity: 0.75;
}

input.slike {
  float: left;
  width: 50px;
  margin-top: 5px;
}

fieldset.upit input:not([disabled]):hover,
fieldset.upit textarea:not([disabled]):hover {
  border: 1px solid var(--color-main);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

fieldset.upit textarea {
  height: 250px;
  line-height: 150%;
}

fieldset.upit select.mala {
  width: 120px;
}

fieldset.upit input.box {
  background: #f7f7f7;
  border: 1px solid #d7d7d7;
  float: right;
  font-size: calc(var(--p-font-size) * 0.95);
  height: 16px;
  margin: 10px 0 0 0;
  width: 16px;
}

fieldset.upit input.submit,
#slikeBris {
  background: var(--color-main);
  color: #fff;
  cursor: pointer;
  padding: 15px;
  transition: all 0.5s;
}

fieldset.upit input.submit:hover {
  background: transparent;
  color: #fff;
}

fieldset.upit.admin input.text,
fieldset.upit.admin input.textx,
input.slike,
fieldset.upit.admin select,
fieldset.upit.admin textarea,
fieldset.upit.admin input.submit,
#slikeBris {
  background-color: #22262b;
  flex: 0 0 500px;
}

fieldset.upit.admin input.textx {
  flex: 0 0 150px;
}

fieldset.upit ::placeholder {
  color: #fff;
  transition: all 0.5s;
}

fieldset.upit :hover::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#slikeBris {
  background: red;
  display: block;
  float: left;
  line-height: 22px;
  text-decoration: none;
  transition: background 1s;
  width: auto;
}

#slikeBris:hover {
  background: black;
}

/* Show red borders when filled, but invalid */
fieldset.upit input:not(:-moz-placeholder-shown),
fieldset.upit select:not(:-moz-placeholder-shown),
fieldset.upit textarea:not(:-moz-placeholder-shown) {
  border-color: var(--color-main);
}
fieldset.upit input:not(:-ms-input-placeholder),
fieldset.upit select:not(:-ms-input-placeholder),
fieldset.upit textarea:not(:-ms-input-placeholder) {
  border-color: var(--color-main);
}
fieldset.upit input:not(:placeholder-shown),
fieldset.upit select:not(:placeholder-shown),
fieldset.upit textarea:not(:placeholder-shown) {
  border-color: var(--color-main);
}

/**/

div.cta_bg {
  background-color: var(--color-main);
  border-radius: 4px;
  margin: 24px auto;
  padding: 24px;
}

/**/

#prefooter_nav {
  display: grid;
  gap: 32px;
  font-size: var(--p-font-size);
  font-weight: 600;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
  width: min(90%, 720px);
}

#prefooter_nav > li {
  display: flex;
}

#prefooter_nav a {
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--color-main);
  border-radius: 4px;
  color: #fff;
  display: flex;
  flex: 0 0 100%;
  justify-content: space-between;
  line-height: 120%;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.5s;
}

#prefooter_nav a:hover {
  background: transparent;
  border: 2px solid transparent;
  padding: 16px 16px;
}

#prefooter_nav span {
  margin-left: 32px;
}

div.contact_form {
  margin: 24px auto 0;
  max-width: 600px;
  padding-top: 24px;
}

/**/

#cta {
  align-items: center;
  background-color: #373e47;
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
  padding: max(32px, 1vh) 0;
}

#cta > div {
  background-color: var(--color-main);
  border-radius: 8px;
  display: inline-block;
  padding: 32px;
  text-align: center;
  width: auto;
}

#cta span {
  align-items: center;
  color: #fff;
  display: block;
  flex: 0 0 100%;
  font-size: 2em;
  line-height: 150%;
  text-align: center;
}

#cta a,
a.cta {
  align-items: center;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 24px;
  padding: 16px 32px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s;
}

#cta a:hover,
a.cta:hover {
  background-color: var(--color-main);
  border: 1px solid rgba(0, 0, 0, 1);
  color: #fff;
}

a.cta {
  background-color: var(--color-main);
  margin: 0 auto 24px;
}

a.cta:hover {
  background-color: transparent;
}

footer {
  background-color: #373e47;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  color: #fff;
  font-size: 1.45em;
  line-height: 160%;
  padding: calc(var(--spacing-main) / 2) 0;
}

footer a.link {
  color: #fff;
}

footer a.link:hover {
  color: #fff;
  text-decoration: none;
}

#footHolder {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
  width: 90%;
}

div.footHolder ul {
  line-height: 180%;
  list-style: none;
}

#copy {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  margin: 30px auto 0;
  max-width: 1200px;
  padding: 30px 0 0 0;
  width: 90%;
  justify-content: space-between;
}

#copy p {
  font-size: 0.9em;
}

#copy span + span {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  padding-left: 10px;
}

/**/

#admin_list {
  margin-top: 20px;
}

ul.admin_nav {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: calc(var(--p-font-size) * 0.95);
  margin: 40px 0 40px;
  text-align: center;
}

ul.admin_nav li {
  display: block;
  gap: 2px;
  list-style: none;
}

ul.admin_nav a {
  background: var(--color-main);
  color: #fff;
  display: block;
  padding: 10px 5px;
  text-decoration: none;
  transition: all 0.5s;
}

ul.admin_nav a:hover {
  background: #000;
}

/**/

#admin_list div.nek {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px 0;
}

#admin_list div.nek + div.nek {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

#admin_list div.nek > div.img {
  display: flex;
  flex: 0 0 90px;
}

#admin_list div.nek img {
  width: 90px;
  height: 60px;
  background: #eee url(images/loading.gif) center no-repeat;
}

#admin_list div.nek > div.data {
  display: flex;
  flex: 0 0 calc(100% - 110px);
  flex-wrap: wrap;
}

#admin_list div.nek p {
  font-size: 1.5em;
  line-height: 30px;
}

#admin_list p.naziv {
  flex: 0 0 calc(100% - 50px);
}

#admin_list p.posjeta {
  flex: 0 0 50px;
  text-align: right;
}

#admin_list p.unos {
  flex: 0 0 calc(100% - 130px);
}

#admin_list p.ostalo {
  display: flex;
  flex: 0 0 80px;
}

#admin_list div.nek p.del {
  flex: 0 0 50px;
  text-align: right;
}

span.admno,
span.admtp,
span.admrn,
span.admpr,
span.admag,
span.admne,
span.none {
  border-radius: 5px;
  display: block;
  color: #fff;
  text-align: center;
  width: 20px;
}

span.admno {
  background: #00ab00;
}

span.admtp {
  background: #f00;
}

span.admrn {
  background: #04a0f3;
}

span.admpr {
  background: blue;
}

span.admne {
  background: #555;
}

/**/

div.admin_inner {
  margin-top: 20px;
  padding-top: 20px;
}

#slikaBris {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  list-style: none;
  margin: 24px auto;
}

#slikaBris li > a {
  display: block;
  list-style-type: none;
  background: #fff url(images/loading.gif) center no-repeat;
  border: 1px solid #eee;
  margin-bottom: 5px;
}

#slikaBris li > a:hover {
  border: 1px solid var(--color-sub);
  box-shadow: none;
}

#slikaBris img {
  width: 100%;
}

#slikaBris div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

#slikaBris input.slike {
  flex: 0 0 calc(50% - 20px);
  padding: 5px;
}

#slikaBris input.box {
  height: 16px;
  width: 16px;
}

#slikaBris a.brisi {
  align-items: center;
  align-self: stretch;
  border: 1px solid var(--color-main);
  border-radius: 4px;
  box-shadow: none;
  color: var(--color-main);
  display: flex;
  flex: 0 0 calc(50% - 20px);
  font-size: 1.5em;
  line-height: 32px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.5s;
}

#slikaBris a.brisi:hover {
  border: 1px solid #000;
  color: #000;
}

#sve_slike {
  display: flex;
  font-size: calc(var(--p-font-size) * 0.95);
}

/* */

div.admin_baneri_listing {
  font-size: 1.4em;
  margin-top: 32px;
}

div.admin_baneri_listing details {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

div.admin_baneri_listing details + details {
  margin-top: 8px;
}

div.admin_baneri_listing details:hover {
  border: 1px solid var(--color-sub);
}

div.admin_baneri_listing details summary {
  cursor: pointer;
  display: flex;
  padding: 16px;
}

div.admin_baneri_listing details summary.neprocitana {
  background-color: rgba(0, 0, 0, 0.2);
}

div.admin_baneri_listing details:not([open]) summary:hover,
div.admin_baneri_listing details:not([open]) summary:focus {
}

div.admin_baneri_listing details[open] summary {
  border: 1px solid #003eff;
  background: #007fff;
  color: #ffffff;
}

div.admin_baneri_listing details[open] summary + div {
  padding-top: 8px;
}

div.admin_baneri_listing details[open] summary + div.upiti {
}

div.admin_baneri_listing .ukupno {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 8px;
  padding: 12px 16px;
}

div.admin_baneri_listing .naziv {
  flex: 1 0 auto;
}

div.admin_baneri_listing .trajanje {
  display: flex;
  flex: 0 0 120px;
  justify-content: flex-end;
}

div.admin_baneri_listing .datum {
  display: flex;
  flex: 0 0 75px;
  justify-content: flex-end;
}

div.admin_baneri_listing .status {
  display: flex;
  flex: 0 0 20px;
  justify-content: flex-end;
}

div.admin_baneri_listing details > div > div {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
}

div.admin_baneri_listing details > div.upiti > div {
  flex-wrap: wrap;
  gap: 8px;
}

div.admin_baneri_listing details > div.upiti > div + div {
  border-top: 1px dashed rgba(0, 0, 0, 0.5);
}

div.admin_baneri_listing details > div > div.poruka {
  flex-wrap: wrap;
  gap: 8px;
}

div.admin_baneri_listing details > div > div.poruka span {
  flex: 0 0 100%;
  line-height: 150%;
}

div.admin_baneri_listing details > div > div.del {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
  padding: 16px;
}

div.admin_baneri_listing .info {
  background-color: #f7f7f7;
  border-bottom: 1px solid #eee;
  padding: 12px 8px;
}

div.admin_baneri_listing .period {
  flex: 1 0 auto;
}

div.admin_baneri_listing .prikaz {
  display: flex;
  flex: 0 0 60px;
  justify-content: flex-end;
}

div.admin_baneri_listing .klik {
  display: flex;
  flex: 0 0 40px;
  justify-content: flex-end;
}

/**/

.swiper_holder {
  height: 100vh;
  height: calc(100vh);
  position: absolute;
  top: 0;
  width: 100%;

  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.11) 76%, rgba(0, 0, 0, 0) 93%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.11) 76%, rgba(0, 0, 0, 0) 93%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.11) 76%, rgba(0, 0, 0, 0) 93%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99000000',endColorstr='#00000000',GradientType=0 );
}

.swiper {
  color: #fff;
  height: calc(100vh);
  width: 100%;
}

.swiper-pagination {
  display: none;
}

.swiper-slide::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.5) 80%);
}

.swiper-slide.video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide.video a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}

.swiper-slide > a {
  color: #fff;
  display: flex;
}

.swiper-slide > a div.headline {
  display: flex;
  flex-wrap: wrap;
  font-size: 3em;
  font-weight: 500;
  justify-content: center;
  position: absolute;
  right: calc(2.5vw + 35px);
  transform: translate(0, -50%);
  top: 50%;
  width: calc(95vw - 70px);
  z-index: 1;
}

.swiper-slide > a div span {
  display: flex;
  flex: 0 0 100%;
  font-size: 1.75em;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.swiper-slide > a div p {
  display: flex;
  font-weight: 400;
  justify-content: center;
  margin-top: 32px;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-sub-hover) !important;
  transition: all 0.5;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--color-sub) !important;
}

@media screen and (max-width: 1360px) {
  header {
    height: 150px;
    overflow: hidden;
    padding-top: 45px;
    transition: height 0.25s;
  }

  header.show {
    height: 560px;
  }

  header.index {
    background: transparent;
    z-index: 10;
  }

  header.index.show {
    background-color: var(--color-main);
  }

  #logo {
    left: auto;
    margin-bottom: 35px;
    position: relative;
    top: -10px;
    transform: none;
    z-index: 5;
  }

  header > div.holder {
    display: block;
    height: auto;
  }

  header.index > div.holder.bg {
    background: transparent;
  }

  #mainNav {
    flex-wrap: wrap;
    flex: 0 0 100%;
    font-size: 1.8em;
  }

  #mainNav > li {
    flex: 0 0 100%;
  }

  #mainNav > li > a {
    display: block;
    line-height: 18px;
    padding: 16px;
  }

  #mainNav > li:first-child > a {
    display: none;
  }

  #mainNav > li + li {
    border: 0;
    text-align: center;
    margin-left: 0;
  }

  #mainNav ul {
    display: flex;
    flex-wrap: wrap;
    position: static;
  }

  #mainNav ul li {
    border: none;
    flex: 0 0 100%;
  }

  #mainNav ul li + li {
    border: 0;
  }

  #mainNav ul a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background-color: transparent;
    font-size: 1em;
    justify-content: center;
  }

  #mainNav ul a:hover {
    background-color: transparent;
    color: #000;
  }

  #mainNav2 {
    flex-wrap: wrap;
  }

  #mainNav2 a {
    flex: 0 0 100%;
    font-size: 1.8em;
    justify-content: center;
  }

  #cta_head {
    margin-right: 0;
  }

  #kontakt {
    font-size: 1.8em;
    justify-content: center;
    margin-right: 0;
    padding: 16px 12px;
  }

  #zastave {
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
    padding: 32px 0;
    position: static;
    width: auto;
  }

  #zastave li:not(.active) {
    display: flex;
  }

  #zastave li + li {
    margin-left: 16px;
  }

  #zastave a:hover {
    border: 1px solid #fff;
  }

  #zastave:hover li + li {
    margin-top: 0;
  }

  /**/

  #ham {
    background: var(--color-main);
    display: block;
    height: 45px;
    position: absolute;
    right: 0px;
    top: 0px;
    width: 45px;
    z-index: 10;
  }

  .burger-container {
    cursor: pointer;
    display: inline-block;
    height: 45px;
    position: absolute;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    width: 45px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 1000;
  }

  .burger-container #burger {
    display: block;
    height: 8px;
    margin: -4px auto 0;
    position: relative;
    top: 50%;
    width: 18px;
  }

  .bar {
    background: #fff;
    display: block;
    height: 1px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
    width: 100%;
  }

  .topBar {
    transform: translateY(0px) rotate(0deg);
  }

  .btmBar {
    transform: translateY(6px) rotate(0deg);
  }

  .burger-container.open {
    transform: rotate(90deg);
  }
  .burger-container.open #burger .bar {
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0.2s;
  }
  .burger-container.open #burger .bar.topBar {
    transform: translateY(4px) rotate(45deg);
  }
  .burger-container.open #burger .bar.btmBar {
    transform: translateY(3px) rotate(-45deg);
  }

  .open .swiper-slide > a div.headline,
  .open #pretragaIndex {
    display: none;
  }

  .open .swiper-button-next,
  .open .swiper-rtl .swiper-button-prev {
    display: none;
  }

  .open .swiper-button-prev,
  .open .swiper-rtl .swiper-button-next {
    display: none;
  }

  .open #index_slider {
    height: calc(100vh - 525px);
  }
}

@media screen and (max-width: 1020px) {
  /**/

  #pretragaIndex ul {
    flex-wrap: wrap;
  }

  #pretragaIndex li,
  #pretragaIndex li.cijena {
    line-height: 50px;
    list-style: none;
    flex: 0 0 calc((100% - 4px) / 3);
  }

  #pretragaIndex li:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
    flex: 0 0 calc((100% - 10px) / 6);
  }

  #pretragaIndex li.cijena + li,
  #pretragaIndex li:nth-last-of-type(-n + 2) {
  }

  ul.mainSerach {
    grid-template-columns: 1fr 1fr;
  }

  .swiper-slide > a div.headline {
    font-size: 2.8em;
  }
}

@media screen and (max-width: 950px) {
  .swiper-slide > a div.headline {
    font-size: 2.6em;
  }

  #nekretnineList {
    grid-template-columns: 1fr 1fr;
  }

  /**/

  .nekretnineDet > div {
    flex-wrap: wrap;
  }

  #nekretnineDetSlike {
    flex: 0 0 100%;
    margin: 0 auto 0;
  }

  #nekretnineDetData {
    flex: 0 0 100%;
    margin: 40px auto 0;
    width: 100%;
  }

  #slikaBris {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 850px) {
  .swiper-slide > a div.headline {
    font-size: 2.4em;
  }

  fieldset.upit.admin li.full {
    flex-wrap: wrap;
  }

  fieldset.upit.admin label {
    align-items: center;
    display: flex;
    line-height: 34px;
    flex: 0 0 220px;
    min-height: 40px;
  }

  fieldset.upit.admin li.full label {
    flex: 0 0 100%;
  }

  fieldset.upit.admin input.text,
  fieldset.upit.admin input.textx,
  input.slike,
  fieldset.upit.admin select,
  fieldset.upit.admin textarea,
  fieldset.upit.admin input.submit,
  #slikeBris {
    flex: 0 0 100px;
  }

  fieldset.upit.admin li.full input.text,
  fieldset.upit.admin li.full input.textx,
  fieldset.upit.admin li.full select,
  fieldset.upit.admin li.full textarea,
  fieldset.upit.admin li.full input.submit,
  #slikeBris {
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 800px) {
  #cta {
    padding: 0;
  }

  #cta > div {
    border-radius: 0;
    width: 100%;
  }

  div.holder_img.hotel {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    font-size: 1.4em;
  }

  #footHolder {
    flex-wrap: wrap;
    gap: 20px;
  }

  #copy {
    flex-wrap: wrap;
  }

  #copy p {
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 700px) {
  #slikaBris {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  header {
    height: 145px;
    overflow: hidden;
    transition: all 0.25s;
  }

  header.show {
    height: 525px;
  }

  header.index.show {
    height: 100vh;
    z-index: 20;
  }

  #logo {
    width: 260px;
  }

  #mainNav,
  #mainNav2 a,
  #kontakt {
    font-size: 1.6em;
  }

  #mainNav > li > a {
    line-height: 16px;
  }

  #mainNav > li + li {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  #mainNav ul a,
  #kontakt {
  }

  #zastave {
    padding: 24px 0;
    font-size: 1.4em;
  }

  .swiper-slide > a div.headline {
    font-size: 2em;
    top: calc(50% - 64px);
  }

  h1 {
    font-size: 3.4em;
  }

  h1 > span {
    padding: 16px 24px;
  }

  #pretragaIndex {
    padding: 24px;
  }

  #pretragaIndex ul {
    gap: 2px;
  }

  #pretragaIndex li {
    margin-bottom: 0px;
    flex: 0 0 100%;
  }

  #pretragaIndex li + li {
    margin: 0;
  }

  #pretragaIndex li.cijena,
  #pretragaIndex li:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
    margin-left: 0;
    flex: 0 0 calc((100% - 2px) / 2);
  }

  #pretragaIndex li.cijena + li.cijena {
    margin-left: 0px;
  }

  #pretragaIndex li.cijena + li,
  #pretragaIndex li:nth-last-of-type(-n + 2) {
    margin: 0;
  }

  /**/

  .swiper-button-next,
  .swiper-button-prev {
    top: var(--swiper-navigation-top-offset, 50%);
    top: calc(50% - 64px) !important;
  }

  /**/

  #gore {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    top: auto;
    width: 100%;
    z-index: 10;
  }

  #gore > span {
    align-items: center;
    background: var(--color-main);
    border-top: 1px solid #fff;
    color: #fff;
    display: flex;
    font-size: 1.4em;
    justify-content: center;
    padding: 20px 5vw;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
  }

  #gore > span:hover {
    background: #555;
  }

  #gore > span > span.filter {
    display: flex;
    height: 24px;
    margin-right: 12px;
    width: 24px;
  }

  #okvirFilter {
    background-color: #eee;
    height: 0;
    transition: all 0.5s;
  }

  .show #okvirFilter {
    height: calc(340px + 10vw);
  }

  #pretragaMain {
    background-color: #22262b;
    padding: 5vw;
    width: 100%;
  }

  ul.mainSerach {
    grid-template-columns: 1fr;
  }

  #index_nekretnine {
    grid-template-columns: 1fr;
  }

  #subNav a {
    font-size: 1.5em;
    justify-content: left;
  }

  #nekretnineList {
    grid-template-columns: 1fr;
  }

  #nekretnineList h3 {
    height: auto;
  }

  div.rez {
    flex-wrap: wrap;
    gap: 8px;
  }

  div.rez > div {
    flex: 0 0 100%;
    justify-content: space-between;
  }

  a.brz,
  span.cur {
    flex: 1 1 auto;
    justify-content: center;
    padding: 3px;
    max-width: 75px;
  }

  /**/
  section ul.karakteristike li,
  section ul.karakteristike li:nth-last-of-type(-n + 2) {
    font-size: 1.5em;
    line-height: 150%;
    margin: 0 0 10px 0;
    width: 100%;
  }

  /**/

  div.holder_img:not(.full) {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  div.holder_img:not(.full) > div {
    aspect-ratio: 3 / 2;
  }

  /**/

  p.text,
  ul.text,
  ol.text {
    text-align: left;
  }

  /**/

  #prefooter_nav {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  /**/

  #footHolder {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 480px) {
  .swiper-slide > a div.headline {
    font-size: 1.6em;
  }

  #pretragaIndex {
    bottom: 0;
    padding: 16px;
  }

  #pretragaIndex h2 {
    font-size: 1.8em;
    margin-bottom: 16px;
  }

  #index_nekretnine {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.6em;
  }

  h1 > span {
    padding: 8px 16px;
  }

  h2 {
    font-size: 2.4em;
    margin-bottom: 24px;
  }

  #index_banner h2 {
    font-size: 2.2em;
  }

  h3 {
    font-size: 2em;
  }

  #cta span {
    font-size: 1.75em;
  }

  #cta a,
  a.cta {
    font-size: 1.35em;
  }

  #footHolder {
    grid-template-columns: 1fr;
  }

  div.footHolder ul li {
    text-align: center;
  }

  #copy p {
    text-align: center;
  }

  #admin_list p.naziv {
    flex: 0 0 100%;
  }

  #admin_list p.unos {
    display: none;
  }

  #admin_list p.posjeta {
    flex: 0 0 40px;
    margin-right: 10px;
  }

  #admin_list div.nek p.del {
    margin-left: calc(100% - 50px - 80px - 50px);
  }

  #slikaBris {
    grid-template-columns: 1fr 1fr;
  }
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  /*  transition is applied to lazyloaded not lazyload */
  transition: opacity 300ms;
}
