*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

h1,h2,h3,h4,h5,a,ul li, p, span, span1{
    font-family: font1;
}

html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
section{
   overflow: hidden;

}

.container{
    width: 80%;
    margin: 0 auto;
}

p{
    text-align: justify;
}


@font-face {
    font-family: font1;
    src: url(../Montserrat/Montserrat-VariableFont_wght.ttf);
}


#preloader{
    background: #00b7f1 url('../img/loader.gif') no-repeat center center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
  
  }


  /*NASLOVNA*/

  .language{
    position: relative;
    width: 100%;
    height: 100vh;
  }

  #fullscreen-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    
  }

.language-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    background-color: rgb(211, 211, 211, .5);
    padding: 30px;
    width: 100%;
}

.logo-language img{
    width: 300px;
}





.language-text h1{
    font-size: 2em;
    font-weight: 900;
}


/* --- Glavni Navigacioni Bar --- */
.navi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    transition: 0.5s;
    z-index: 999;
    box-shadow: 0 0 15px #d8c066;
    border-bottom: 1px solid #d8c066;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    box-sizing: border-box;
}

/* Logo */
.logo-link img {
    display: block;
    max-height: 50px;
    width: auto;
}

/* Glavna lista */
.navbar {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar > li {
    position: relative; /* Baza za pozicioniranje podmenija */
}

.navbar > li > a {
    color: #181818;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 20px;
}

/* Ikone strelica unutar linkova */
.navi i {
    color: #e72e2e;
    font-size: 0.8rem;
    margin-left: 5px;
    pointer-events: none; /* Miš ignoriše ikonicu i čita samo link (Sprečava treperenje!) */
}

/* --- Animacija podvlačenja glavnih linkova --- */
.jedan {
    position: relative;
}

.jedan > a::before {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: #333;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.jedan:hover > a::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menu-toggle {
    display: none; /* Sakriveno na desktopu */
}


/* ==========================================================================
   2. STILOVI ZA DROPDOWN (Potpuna kontrola preko JS-a)
   ========================================================================== */

/* Zajednički stilovi za OBA nivoa podmenija */
.navbar ul {
    list-style: none !important;
    position: absolute !important;
    background-color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
    min-width: 260px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    border-top: 2px solid #d8c066 !important;
    
    /* Početno stanje - JS kontroliše ovo */
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

/* ---- PRVI NIVO: .dropdown (Usluge) ---- */
.dropdown {
    top: 100% !important; /* Otvara se tačno ispod linka Usluge */
    left: 0 !important;
    z-index: 1000 !important;
}

/* Linkovi unutar prvog dropdown-a */
.dropdown a {
    color: #333 !important;
    padding: 12px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-decoration: none !important;
    text-transform: none !important;
    font-weight: 400 !important;
    background-color: #ffffff !important;
    transition: background 0.2s, color 0.2s !important;
}

.dropdown a:hover {
    background-color: #f5f5f5 !important;
    color: #d8c066 !important;
}

/* ---- DRUGI NIVO: .dropdown-sub (Hidrotehnički radovi) ---- */
.has-dropdown-right {
    position: relative !important;
}

.dropdown-sub {
    left: 100% !important; /* Izbacuje podmeni udesno sa ivice */
    top: -10px !important;  /* Blago podignut radi poravnanja sa vrhom elementa */
    z-index: 2000 !important; /* Veći nivo, leti iznad Zemljanih i Transportnih radova */
    
    /* NEVIDLJIVI MOST: Ključni dio protiv treperenja. 
       Proširuje podmeni unazad preko ivice za 15px tako da kursor miša 
       ne može ispasti u prazan prostor tokom prelaza. */
    padding-left: 15px !important;
    margin-left: -15px !important;
}

/* Linkovi unutar drugog, najdubljeg podmenija */
.dropdown-sub a {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
}

/* Potpuno gasimo CSS hover okidače da se ne svađaju sa tvojom skriptom */
.has-dropdown:hover > .dropdown,
.has-dropdown-right:hover > .dropdown-sub {
    display: none; 
}




/*MENU TOGGLE*/

.menu-toggle {
    display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    right: 50px;
    top: 15px; /* Smanjeno sa 50px na 15px da ti ne beži previše nisko preko sadržaja */
    z-index: 100000; /* Najveći z-index da uvek bude na vrhu */
}

/* Tvoje crvene crtice */
.bar {
    position: relative;
    width: 30px; /* Malo smanjena širina crtica unutar 40px kockice radi lepšeg izgleda */
    height: 3px;
    background-color: #e72e2e; /* Tvoja crvena boja */
    margin: 3px 0; /* Optimalan razmak za animaciju */
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* --- Tvoja animacija prelaza u "X" (Precizno kalibrisana za 40px visinu) --- */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #333; /* Menja boju u tamnu kad se otvori */
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #333; /* Menja boju u tamnu kad se otvori */
}



.navi img{
    max-width: 150px;
    transition:.5s;
}





.sticky{
    background-color: rgba(255, 255, 255, .8);
    padding: 20px;
    transition: .7s;
    top: 0;
}

.sticky img{
    max-width: 90px;
    transition: .7s;
}

.sticky li a{
    margin-top: 5px;
    transition: .7s;
}
.social{
    width: 100%;
}


.social ul{
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    
}

.social ul li{
    margin-right: 5px;
}

.social a{
    color: #353535;
}

.social ul li a img{
    max-width: 20px;
    margin: 0;
}


.social ul li:last-of-type{
    display: block;
    position: absolute;
    right: 0;
}

.mobile-logo{
    display: none;
}





.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    }

  
    
    .mySlides {
    display: none;
    }
    
    img {
    width: 100%;
    }

    .slideshow-container {
        max-width: 100%;
        position: relative;
        margin: auto;
        }
        
        .slajder {
        display: none;
        animation-name: fade;
        animation-duration: 1s;
        }
        
        @keyframes fade {
        from {opacity: 0}
        to {opacity: 1}
        }
        
.slajder-text{
    position: absolute;
    bottom: 9%;
    left: 5%;
    animation: fade_in .9s linear;
    width: 60%;
    padding: 30px 50px;
    background-color: rgba(219, 219, 219, 0.5);
}
.slajder h1{
color: #333;
text-transform: uppercase;
font-size: 4em;
font-weight: 900;

}

.slajder-text h4{
    font-weight: 500;
    color: #333;
}



@keyframes fade_in{
    from{
        left:10%;
        opacity: 0;

    }
    to{
        left: 5%;

    }
}
.slajder{
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.slajder:first-child{
    background-image: url('../img/hidro-gradjevina.jpg');
    
}

.slajder:nth-child(2){
    background-image: url('../img/kanalizacija.jpg');
}

.slajder:nth-child(3){
    background-image: url('../img/zemljani-radovi.jpg');
}

/*OFFER MAIN*/

.spec{
    margin: 50px auto;
}
.spec h2{
    text-align: center;
    margin: 30px auto;
    font-weight: 300;
}

.offer-main{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin: 90px auto;
}

.offer-single{
    flex-basis: 20%;
}

.offer-single:hover img{
    transform: scale(1.2);
    transition: .7s;
}

.offer-single img{
    max-width: 30%;
    transition: .5s;
}

.offer-single h4{
    font-weight: 300;
    font-size: 1.1em;
    padding: 30px 0;
}





/* MAIN OFFER */
#single2{
    text-align: center;
}

#single2 img{
    max-width: 50%;
    margin: auto;
}

#single2 div{
    flex-basis: 12%;
}


#single2 h2{
    font-size: 1em;
    font-weight: 400;
    color: #e72e2e;
    margin-top: 30px;
    border-bottom: 1px solid #e72e2e;
    padding: 10px 50px;
}
.main-offer-label h2{
    text-align: center;
    margin: 30px auto;
    font-weight: 200;
}



.dugme1{
    width: 200px;
    padding: 10px 0;
    margin: 20px auto;
    border-radius: 25px;
    font-weight: bold;
    border: 1px solid #e72e2e;
    background: transparent;
    color: #e72e2e;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    font-weight: 400;
}

span{
    background: #e72e2e;
    height: 100%;
    width: 0;
    border-radius: 23px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: .5s;
}

.dugme1:hover{
    color: white;
}

.dugme1:hover span{
    width: 100%;
    color: white;
}


marquee img{
    max-width: 50px;
}

.dugme2{
    width: 150px;
    padding: 10px 0;
    text-align: center;
    margin: 20px auto;
    border-radius: 25px;
    font-weight: bold;
    border: 1px solid white;
    background: white;
    color: #e72e2e;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
}


/*PARRALAX MAIN*/

.parralax{
    background-image: url('../img/wall.jpg');
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    background-attachment: fixed;
    width: 100%;
}

.parralax-text{
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgb(211, 211, 211, .8);
    text-align: center;
}

.parralax img{
    position: absolute;
    display: block;
    right: 2%;
    top: 40%;
    max-width: 600px;
}

.parralax-text h4{
    font-weight: 500;
    color: #333;
    font-size: 2em;
}


/*O NAMA MAIN*/

.uber{
    display: flex;
    flex-direction: row;
    margin: 50px auto;
}

.uber-photo{
    flex-basis: 30%;
    margin: auto;
}

.uber-photo img{
    display: block;
    margin: auto;
    max-width: fit-content;
}


.uber-text{
    flex-basis: 60%;
    margin: auto;
    text-align: justify;
}

.uber-text h2{
    margin: 30px auto;
}

.uber-text a{
    display: block;
    margin: 30px auto;
    color: red;
}

.novi-prostor{
    background: url('../img/room.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    background-attachment: fixed;
    background-position: bottom;
}




.parallax-background {
    position: absolute;
    top: 100vh;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/construction.jpg');
    background-size: cover;
    background-position: bottom;
    z-index: -1; /* Postavljamo ispod sadržaja */
}



/* O NAMA*/


.uber-single{
    display: flex;
    flex-direction: row;
    margin-top: 200px;
    margin-bottom: 50px;
}


.uber-single-photo{
    flex-basis: 25%;
    margin: auto;
    position: relative;
}

.uber-single-photo img:first-child{
    max-width: 400px;
}

.uber-single-photo img:nth-child(2){
    position: absolute;
    max-width: 100px;
    bottom: -10%;
    right: -10%;
}
.uber-single-text{
    flex-basis: 50%;
    margin: auto;
}




.uber-statistic{
    width: 100%;
    background-color: #ffb001;
    height: 300px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.uber-statistic i{
    margin: auto;
    font-size: 2em;
    color: white;
    font-weight: 900;
    
}

.uber-statistic i span{
    color: white;
    font-size: 3em;
    display: contents;
    width: 100px;
}


.our-team{
    display: flex;
    flex-direction: row;
    margin: 50px auto;
}

.our-team-text{
    flex-basis: 50%;
    margin: auto;
    padding: 50px;
}
.our-team-pic{
    text-align: center;
    flex-basis: 50%;
}
.our-team-pic img{
    max-width: 500px;
}


/*REFERENCA*/

.reference-table{
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin-top: 30px;
}

.reference-table thead{
    background-color: #1f2937;
    color: #fff;
}

.reference-table th,
.reference-table td{
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.reference-table tbody tr:nth-child(even){
    background-color: #f5f5f5;
}

.reference-table tbody tr:hover{
    background-color: #e9f2ff;
    transition: 0.3s;
}

/*USLUGE*/

.usluge-cover{
    background: url('../img/usluge.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    overflow: hidden;
    background-position: bottom;
    position: relative;
}

.usluge-cover h1{
    position: absolute;
    bottom: 1%;
    left: 3%;
    text-align: center;
    padding: 5px 15px;
    color: white;
    font-weight: 900;
    font-size: 3em;
    border-bottom: 4px solid white;
}


.usluge-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px auto;

}

.content-usluge-side{
    flex-basis: 30%;
    position: relative;
    border-right: 1px solid #353535;
    margin: 10px;
    padding: 10px;
}


.content-usluge-side ul li{
    list-style-type:square ;
}

.content-usluge-side a{
    background-color: #ffb001;
    width: 100%;
    padding: 5px;
    display: block;
    text-align: center;
    border-radius: 5px;
}

.content-usluge-main{
    flex-basis: 65%;
    display: flex;
    flex-wrap: wrap;
}

.content-usluge-single{
    flex-basis:100%;
    margin: 10px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    
}


.content-usluge-single img{
    max-width: 50%;
    transition: .5s;
}



.content-usluge-single h3{
    font-size: 1.2em;
    margin-top: 20px;
}

.content-usluge-single ul li{
    list-style: disc;
}



/*GALERIJA*/

.prva-slika{
    position:relative;
    display:block;
}

.otvori-galeriju{
    display:none;
}

.galerija-content{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.galerija-container{
    width: 90%;
    margin: auto;
}

.galerija-side{
    flex-basis: 90%;
    margin: auto;
    text-align: center;
}

.galerija-main{
    flex-basis: 95%;
}

.galerija{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.galerija a{
    height: 200px;
    width: 10%;
    margin: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 5px #000;
}

.galerija a img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.galerija a img:hover{
    transform: scale(1.2);
    transition: .7s;
}




/*KONTAKT*/

.contact-photo{
    background: url('../img/contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    background-attachment: fixed;
    position: relative;
}

.kontakt-info{
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, .9);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px;
}

.kontakt-text{
    flex-basis: 50%;
}

.kontakt-form{
    flex-basis: 40%;
}

input{
    width:100%;
    height: 35px;
    border: 1px solid #333;
    border-radius: 4px;

}
textarea{
    width: 100%;
    height: 180px;
}









/*FOOTER*/

footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 100px;
    background-color: #c0bbbb;
    color: #333;
}

.footer-logo{
    flex-basis: 20%;
    border-top: 1px solid white;
}

.footer-logo img{
    max-width: 100%;
}

footer i{
    color: #006be6;
    text-align: center;
    display: block;
    width: 30px;

}

.footer-info{
    flex-basis: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-info ul li{
    margin: 5px 0;
    font-size: .9em;
}

.footer-info a{
    color: white;
}

.back-to-top{
    position: fixed;
    bottom: 50px;
    right: 50px;
    -webkit-text-stroke: 1px white;
    display: none;
}

.call{
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 10px 20px;
    border-radius: 50%;
    animation: cog-pulse 3s linear  infinite ;
    -webkit-text-stroke: 1px #333;
    border: 1px solid white;

}


@keyframes cog-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 173, 0, 0.99)
    }
    50% {
        box-shadow: 0 0 0 35px rgba(253, 173, 0, 0.55)
    }
    100% {
        box-shadow: 0 0 0 65px rgba(253, 173, 0, 0)
    }
}

.call a{
    color: #e72e2e;
    text-transform: uppercase;
    font-size: 1.4em;
}

.prava p{
    text-align: center;
    background-color: #353535;
    color: white;
    border-top: 1px solid white;
    padding: 3px 0;
}

.prava a{
    color: #e72e2e;
}







@media only screen and (max-width: 767px){

    .container{
        width: 99%;
    }

.sticky{
    padding: 0;
}
    .slajder-text{
        bottom: 10%;
        padding: 25px 9px;
        width: 85%;
    }

    .slajder-text h1{
        font-size: 2em;
    }

    .slajder{
        background-position: center;
    }

    .slajder-text h4{
        font-size: 2em;
    }

    .mobile-logo{
        display: block;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }

    .mobile-logo img{
        max-width: 100px;
    }

    .slider h1{
        font-size: 1.7em;
        background-color: rgba(255, 255, 255, .7);
        padding: 25px;
        top: 55%;
        width: 95%;
    }
    #single2{
        height: 400px;
    }

    #single2 img{
        max-width: 80%;
    }

    #single2 h2{
        font-size: 20px;
    }


   
    


    

 .menu-toggle {
        display: flex !important; /* Prisilno palimo dugme na mobilnom */
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 21px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
        color: #181818 !important;
        /* Pozicioniranje u gornjem desnom uglu */
        position: fixed !important;
        top: 25px !important;
        right: 5% !important;
        z-index: 100000 !important; /* Stavljamo ga na najveći nivo da ne ostane iza bijele trake */
    }

    /* Tri vodoravne crtice unutar dugmeta */
    .menu-toggle .bar {
        display: block !important;
        width: 100% !important;
        height: 3px !important; /* Debljina crtica */
        background-color: #181818 !important; /* Crna boja crtica - promeni u #ffffff ako ti je navigacija tamna */
        transition: 0.3s !important;
    }

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #181818;
        transition: 0.3s;
    }

    /* Animacija hamburgera u 'X' kada je meni otvoren */
    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Tvoj prepoznatljivi sivi meni preko cijelog ekrana na mobilnom */
    .navi {
        background-color: rgb(211, 211, 211) !important;
        position: fixed !important;
        top: 0 !important;
        left: 100% !important; /* Sakriven desno van ekrana u startu */
        width: 100% !important;
        height: 100vh !important;
        transition: left 0.4s ease !important;
        z-index: 9999 !important;
        overflow-y: auto !important; /* Dozvoljava skrolovanje ako ima puno usluga */
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 100px 0 40px 0 !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }

    /* Kada funkcija mobileMenu() doda klasu .open, meni uleti sa desne strane */
    .navi.open { 
        left: 0 !important; 
    }

    /* Pretvaramo vodoravni navbar u vertikalni */
    .navbar {
        flex-direction: column !important;
        width: 100% !important;
        text-align: center !important;
    }

    .navbar > li {
        width: 100% !important;
        margin: 0 !important;
    }

    .navbar > li > a {
        padding: 15px 0 !important;
        color: #181818 !important;
    }

    /* --- RESET DROPDOWN LOGIKE NA MOBILNOM --- */
    /* Poništavamo pozicioniranje i sakrivamo liste dok se ne klikne */
    .navbar ul {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        background-color: rgba(0, 0, 0, 0.05) !important; /* Blago zatamnjena pozadina za podmeni */
        display: none !important; /* Sakriveno */
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Kada JS doda klasu 'otvoreno' na LI stavku, prikaži njenu podlistu */
    .navbar li.otvoreno > .dropdown,
    .navbar li.otvoreno > .dropdown-sub {
        display: block !important;
    }

    /* Stilovi linkova unutar prvog podmenija na mobilnom */
    .dropdown a {
        text-transform: none !important;
        font-size: 1rem !important;
        padding: 12px 0 !important;
        justify-content: center !important;
        background-color: transparent !important;
    }

    /* Stilovi linkova unutar drugog podmenija (Hidrotehnički radovi unutrašnji linkovi) */
    .dropdown-sub a {
        font-size: 0.9rem !important;
        background-color: rgba(0, 0, 0, 0.04) !important; /* Još malo tamnije radi vizuelne hijerarhije */
    }

    /* Gasimo animaciju podvlačenja linije na mobilnom jer smeta kliku */
    .jedan::before, .jedan:hover::before {
        display: none !important;
        content: none !important;
    }
    
    /* Okrećemo desnu strelicu prema dole na telefonu da izgleda prirodno za padajući meni */
    .navbar .fa-chevron-right {
        transform: rotate(90deg) !important;
    }

    .social{
        display: none;
    }

    .offer-main{
        flex-direction: column;
    }

    .kontakt-call a{
        color: #333;
        font-size: 1.5em;
    }

    .uber{
        flex-direction:column ;
    }

    .uber-single{
        margin-top: 0;
    }

    .uber-single-photo img:nth-child(2){
        right: -5%;
    }

    .uber-statistic{
        height: auto;
    }

    .uber-statistic i{
        margin: 20px;
    }

    .parralax{
        background-size: cover;
    }

    .parralax-text{
        width: 100%;
        top: 0;
        left: 0;
    }

  

   


    /*UBER UNS*/

    .uber-single{
        flex-direction: column;
        text-align: justify;
    }

    .uber-statistic{
        flex-direction: column;
        text-align: center;
    }

    .our-team{
        flex-direction: column;
        text-align: justify;
    }

    .our-team-pic img{
        max-width: 100%;
    }

    .our-team-text{
        padding: 10px;
    }


    /*USLUGE*/


    .usluge-content{
        flex-direction: column;
        text-align: justify;
    }

    .content-usluge-side{
        border-right: none;
        margin: 0;
        padding: 0;
    }

    .usluge-cover h1{
        font-size: 2em;
        font-weight: 700;
        text-align: left;
    }

   

    .content-usluge-single{
        flex-basis: 100%;
    }

    /*GALERIJA*/

    .galerija-naslovna{
        background-position: center;
    }
    .galerija-content{
        flex-direction: column;
    }

    .galerija a{
        width: 100%;
    }

    .contact-photo{
        height: 110vh;
    }

    .kontakt-info{
        flex-direction: column;
        top: 8%;
        width: 95%;
        padding: 10px;
    }
    

    footer{
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .footer-info{
        flex-direction: column;
    }

    footer ul{
        padding: 0;
    }

    .galerija a:not(:first-child){
        display:none;
    }

    .prva-slika{
        overflow:hidden;
        border-radius:8px;
    }

    .prva-slika img{
        display:block;
        width:100%;
        height:auto;
    }

    .galerija-main span{
        display:block;
        align-items:center;
        justify-content:center;
        position:absolute;
        left:0;
        right:0;
        bottom:0;
        height:55px;
        background:rgba(0,0,0,.65);
        color:red;
        font-size:20px;
        font-weight:900;
        backdrop-filter:blur(3px);
    }
}

