
/* Izbornk u boji posto nema slike */
#izbornik-desktop { background-color: #173358; /*position: sticky; top: 0;*/ }

/* Section gallery */
.section-gallery
{
    width: auto;
    min-width: auto;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, 252px);
    grid-gap: 20px;
    margin-top: 200px;
}
.section-gallery div { display: block; position: relative; }
.section-gallery div .hover-layer { width: 100%; height: 100%; position: absolute; bottom: 0; left: 0; z-index: 2; background-color: #173358; opacity: 0.0;}
.section-gallery div .hover-layer:hover { opacity: 0.6; cursor: pointer; transition: opacity 0.4s ease-in-out; }
.section-gallery div .hover-layer:hover {
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: center center;
    background-image: url("/content/images/global/open.svg");
}

@media (max-width: 1150px)
{
    .section-gallery { margin-top: 120px; }
}