#divSrSlika{
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    
}
.imgSrSlika{
    width: 100%;
    animation-name: fade; 
   animation-duration: 2s;
    /* top: -50%; */
    /* mask-image: linear-gradient(blue, transparent); */
    /* -webkit-mask-image: linear-gradient(blue, transparent); */
}
@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
#divSrTekst{
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
#divTekst p{
    opacity: 0;
    transition: 450ms opacity ease-in 600ms;
    color: var(--bela);
}
#divTekst img{
    transition: 450ms transform ease-in 300ms;
    transform: scale(.1, .1);
}
.prikaziPasus{
    opacity: 1!important;
}
.prikaziGrafiku{
    transform: scale(1, 1)!important;
}
.divSrTksPasus span{
    /* transform: scale(1.4); */
    transform: translateX(-100%);
    opacity: 0;
    transition: 250ms all cubic-bezier(0.075, 0.82, 0.165, 1);
    
}
.divSrTksPasus span:nth-child(1){
    /* transition-delay: 300ms; */
    transform: translateX(0);
}
.divSrTksPasus span:nth-child(2){
    transition-delay: 600ms;
}
.divSrTksPasus span:nth-child(3){
    transition-delay: 900ms;
}
.divSrTksPasus span:nth-child(4){
    transition-delay: 1200ms;
}
.divSrTksPasus span:nth-child(5){
    transition-delay: 1500ms;
}
.divSrTksPasus span:nth-child(6){
    transition-delay: 1800ms;
}
.divSrTksPasus span:nth-child(7){
    transition-delay: 2100ms;
}
.prikaziPasus span{
    /* opacity: 1; */
    /* transform: scale(1); */
    transform: translateX(0);
    opacity: 1;
}
.spnSredinaNaslov{
    display: block;
    margin: .8em 0 .7em 0;
    font-size: 2.5em;
    font-weight: 800;
    letter-spacing: .1em;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, .5);
}
.spnSredinaTekst{
    display: block;
    margin: .5em 0;
    font-size: 1.7em;
}
.spnSredinaTekst a {
    position: relative;
    z-index: 1;
    font-weight: 700;
}
.spnSredinaTekst a::after {
    content: "";
    display: block;
    background-color: red;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: width 300ms ease;
}
.spnSredinaTekst a:hover::after {
    width: 100%;
}


/* novo */
#divTekst{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 1em;
    justify-items: center;
    align-items: center;
}
#divTekst img{
    max-width: 100%;
    max-height: 100%;
}
#divTekst p{
    font-size: 1.4em;
    padding: 2em 1em;
    background-color: rgba(255,255,255,0.1);
}

@media screen and (max-width:480px){

    #divSrSlika{
        max-height: 55vw;
    }
    #divTekst{
        grid-template-columns: 1fr;
        text-align: center;
    }
    #divTekst img{
        max-width: 80%;
    }
    #divTekst>*:nth-child(1){
        grid-row-start: 1;
    }
    #divTekst>*:nth-child(2){
        grid-row-start: 2;
    }
    #divTekst>*:nth-child(3){
        grid-row-start: 4;
    }
    #divTekst>*:nth-child(4){
        grid-row-start: 3;
    }
    #divTekst>*:nth-child(5){
        grid-row-start: 5;
    }
    #divTekst>*:nth-child(6){
        grid-row-start: 6;
    }
    #divTekst>*:nth-child(7){
        grid-row-start: 8;
    }
    #divTekst>*:nth-child(8){

    }
    #divTekst>*:nth-child(9){

    }
    #divTekst>*:nth-child(10){

    }
    #divTekst>*:nth-child(11){
        grid-row-start:10; 
    }
    #divTekst>*:nth-child(12){
        grid-row-start:11;
    }
}
@media screen and (min-width:481px) and (max-width:768px){
    
}
@media screen and (min-width:769px){
    #divLogo{
        z-index: 10;
    }
    #divMeni{
        z-index: 10;
    }
    #divKontejnerSlike{
        --prv1: rgba(255, 255, 255, 0.2);
        --prv2: rgba(195, 13, 13, 0.786);
        --prv3: rgba(255,255,255,0.6);
        --prv4: rgba(255,255,255,0.5);
        /* background-image: linear-gradient(var(--prv1), var(--prv2), var(--prv3)); */
        z-index: 10;
    }
    #divSrSlika{
        overflow: unset;
    }
    
    .imgSrSlika{   
        z-index: -1;
        /* padding: 30px; */
        transform: translateY(-40%);

    -webkit-mask-image: linear-gradient(transparent 30%, blue 70%, transparent 100%);

    }
}