
/* quicksand-regular - latin_latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/quicksand-v19-latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/quicksand-v19-latin_latin-ext-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* quicksand-700 - latin_latin-ext */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('../fonts/quicksand-v19-latin_latin-ext-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/quicksand-v19-latin_latin-ext-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* mansalva-regular - latin */
@font-face {
  font-family: 'Mansalva';
  font-style: normal;
  font-weight: 400;
  src: local('Mansalva Regular'), local('Mansalva-Regular'),
       url('../fonts/mansalva-v1-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/mansalva-v1-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


* {box-sizing:border-box}

/*  FONT  */

body {
 font-family: 'Quicksand', sans-serif;
}


/*  LOGO & NAVIGATION  */

.logo-main {
  position: absolute;
  left: 20px;
  top: 0px;
  z-index: 40;
}

.jezik-ikonice {
  padding: 2px;
  margin-top: 12px;

}

.button {
  margin-bottom: 5px;
}

.justy {
  text-align: justify;
}

.text-main p {
  margin-bottom: 1rem;
}

.glavna-slika {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .3));
  transition: filter .25s ease-in-out;
  border-radius: 4px;
}

.card-bottom {
  position: relative;
  bottom: 0;
}

/* HERO HEADER  */

.hero-header-bg {
  background-image: url('../images/wave.svg'), url('../images/her1.jpg');
  background-position: bottom, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.hero-bottom-bg {
  background-image: url('../images/wave-bottom.svg'), url('../images/her2.jpg');
  background-position: top, bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}

/* CARD  */
.card-same-height {
  display: flex;
}

.label_cijena {
  color:red;
}

.home_cateName{
  font-weight: bold;
  font-size: 12px;
  margin-top:10px;
}

.slika_novosti_one {
    height: 400px;
    border-radius: 2px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
}

.slika_gt_card {
    height: 250px;
    border-radius: 2px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
}


/*  LAZY LOAD  */

.js-img.fade {
    animation-name: fadeIn;
    animation-duration: 400ms;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
}        

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


/*  GALERIJA MASONRY  */

.masonry {
  display: grid;
  grid-template-columns: repeat(1, minmax(100px,1fr));
  grid-gap: 10px;
  grid-auto-rows: 0;
  cursor: pointer;
}


@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .masonry {
    grid-template-columns: repeat(2, minmax(100px,1fr));
  }
}

@media only screen and (min-width: 1024px) {
  .masonry {
    grid-template-columns: repeat(3, minmax(100px,1fr));
  }
}

@media screen and (max-width: 768px), print {
.button.is-fullwidth-mobile {
display: flex;
width: 100%;
}
}

.masonry-item, .masonry-content {
  border-radius: 4px;
  overflow: hidden;
}

.masonry-item {
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .3));
  transition: filter .25s ease-in-out;
}

.masonry-item:hover {
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, .3));
}


.slike-container {
    width: 100%;
    margin: 10px auto;
    columns: 3;
    column-gap: 15px;
}

@media screen and (max-width: 768px), print {
.slike-container {
    width: 100%;
    margin: 10px auto;
    columns: 1;
    column-gap: 0px;
}

.hero-body {
    flex-grow: 1;
    flex-shrink: 0;
    padding-bottom: 5rem;
}

.slike-item {
    width: 100%;
    overflow: hidden;
    margin: 0 0 10px;
    background: #fff;
    break-inside: avoid;
   
   
}

}



.slika {
    width: 100%;
    cursor: pointer;
}



/*  MODAL GALERRY  */

.item-slide {
  box-sizing: border-box;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgba(0,0,0,0);
  width: 90%;
  max-width: 1200px;
  max-height: 700px;
  overflow: hidden;
  text-align: center;
}

.modal img {
  height: 100vh;
  padding: 2rem;
}

.item-slide{
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}


/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  right: 0;
  top: 0;
}

.item-slide img {
  max-width: 1200px;
}

.caption-container {
  color: white;
}

























.navbar-item.is-hoverable:hover .navbar-dropdown {
  display: block;
}

.navbar-item.has-dropdown .navbar-dropdown {
  display: none;
}
