/* Crvena boja samo za riječ Future */
.word-reveal .wr-word-clip:nth-child(5) .wr-word {
    color: #e30613 !important;
}
/*animated link*/
.izbornik a {
  position: relative;
  color: var(--title);
  text-decoration: none;
  padding-bottom: 5px;
}

.izbornik a:hover {
  color: var(--title);
}

.izbornik a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.izbornik a:hover::before {
  transform: scaleX(1);
}
/*50vh*/
/* Responzivni DIV visine 50% zaslona */
.responsive-50vh {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

/* Moderni mobilni preglednici */
@supports (height: 50dvh) {
    .responsive-50vh {
        height: 50dvh;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .responsive-50vh {
        min-height: 280px;
    }
}

/* Mobitel */
@media (max-width: 767px) {
    .responsive-50vh {
        height: 50vh;
        min-height: 240px;
    }

    @supports (height: 50dvh) {
        .responsive-50vh {
            height: 50dvh;
        }
    }
}
