*{
    margin: 0;
    padding: 0;
    list-style: none;
}

@font-face {
    font-family: moj_font;
    src: url('../Montserrat/Montserrat-VariableFont_wght.ttf');
}

h1, h2, h3, h4, li, a, span, p{
    font-family: moj_font;
}

a{
    text-decoration: none;
}

section{
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    text-align: left;
}

.preloader{
    background: #000 url('../img/loader.gif') no-repeat center center;
    background-position: center;
    background-size: 450px;
    height: 100vh;
    background-color: white;
    background-repeat: no-repeat;
    z-index: 10000;
    top: 50%;
    position: fixed;
}


.menu-toggle {
    display: flex;
    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: 50px;
    display: none;
  
  }


  
  .bar {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: #ffca03;
    margin: 4px 0;
    transition: transform 0.3s ease;
    z-index: 9999;
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
    background-color: #333;
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
    background-color: #333;
  }



#header.sticky{
    position: fixed;
    top: 0;
    background: #074066;
    z-index: 999;
    padding:15px 10px ;
    transition: .7s;
    opacity: .9;
}
.container-fluid{
    width: 100%;
}
.container{
    width: 80%;
    margin: 0 auto;
}
#header{
    width: 100%;
    background-color:transparent;
    display: flex;
    flex-direction: row;
    position: fixed;
    z-index: 999;
    border-bottom:1px solid #d8c066 ;
    box-shadow: 0 0 10px #d8c066;
    transition: .7s;
    padding-bottom: 10px;
}

#header .logo{
    width: 20%;
    margin: auto;
    display: block;
    padding-left: 30px;
}

#header .nav{
    width: 70%;
    margin-left: 30%;
    margin-top: 110px;
}

#header ul li{
    display: inline-block;
    margin-left: 30px;
    display: inline-block;
}

#header ul li a{
    color: white;
    text-transform: uppercase;
    font-size: .9em;
    font-weight: 500;
    transition: .5s;
    display: block;
}

#header ul li a:hover{
    color: #d8c066;
    transition: .5s;
}

.konsultacije1{
    display: none;
}


#header i{
    display: none;
    margin: 0 5px;
    color: #d8c066;
    transition: .5s;
}

#header .active i{
    display: inline-block;
    color: #d8c066;
}

#header .active a{
    color: #d8c066;
}

#header img{
    width: 150px;
}

.nav li{
    position: relative;
}

.jedan:before{
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 1px;
	bottom: 0;
	left: 0;
	background-color:#d8c066;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
.jedan:hover::before{
	transform: scaleX(1);
	transform-origin: bottom left;
}


.konsultacije{
    position: absolute;
    right: 40px;
    bottom: 25px;
    border: 1px solid white;
    padding: 5px 15px;
    background-color: #ffca03;
    text-transform: uppercase;
    color: #333;
    border-radius: 7px;
    font-size: .8em;
}

#header button{
    width: 100px;
    height: 50px;
    border-radius: 10px;
    background-color: transparent;
    color: #d8c066;
    border: 1px solid #d8c066;
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
}
/*SLAJDER ***************************************************/
.slideshow-container {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    margin: auto;
    }
    
    .mySlides {
    display: none;
    }
    
    img {
    width: 100%;
    }

    .slideshow-container {
        max-width: 100%;
        position: relative;
        margin: auto;
        height: 100vh;
        overflow: hidden;
        }
        
        .slajder {
        display: none;
        animation-name: fade;
        animation-duration: 1s;
        }
        
        @keyframes fade {
        from {opacity: .7}
        to {opacity: 1}
        }
        


.slajder h1{
position: absolute;
top: 30%;
left: 10%;
color: white;
text-transform: uppercase;
font-size: 3.8em;
font-weight: 700;
animation: fade_in .7s linear;
display: block;
width: 100%;
}

@keyframes fade_in{
    from{
        left:-100%;
        opacity: 0;

    }
    to{
        left: 10%;
        opacity: 1;

    }
}

.slajder span{
    font-size: .7em;
}

.slajder p{
    position: absolute;
    top: 42%;
    left: 10%;
    color: white;
    font-size: 1.2em;
    text-align: center;
    animation: fade_text 1s linear;
    }

@keyframes fade_text{
    from{
        left:-50%;
        opacity: 0;

    }
    to{
        left: 10%;

    }
}

    .slajder a{
        position: absolute;
        top: 44%;
        left: 10%;
        color: white;
        font-size: 1em;
        text-align: center;
        border: 1px solid white;
        margin: 30px 0;
        padding: 10px 30px;
        animation: fade_button .8s linear;
        transition: .6s;
        }

.slajder a:hover{
    background-color: #074066;
    color: #d8c066;
    transition: .6s;
    border: 1px solid #d8c066;
}

        @keyframes fade_button{
            from{
                left:-30%;
                opacity: 0;
        
            }
            to{
                left: 10%;
                opacity: 1;
        
            }
        }


        

/* USLUGE POČETNA*/

.usluge-naslovna{
    text-align: center;
    margin: 50px 0;
    text-transform: uppercase;
    font-size: .9em;
}

.usluge {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
}

.oblast{
    flex-basis: 20%;
    text-align: center;

}

.oblast p{
    text-align: center;
}
.oblast h3{
    margin: 20px 0;
}

.oblast img{
    max-width: 60px;
}



.parralax{
    background-image: url(../img/mermer1.jpg);
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-position:bottom;
    background-repeat: no-repeat;
    height: 500px;
}

.parralax h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-size: 2em;
    font-weight: 900;
    width: 100%;
    text-align: center;
}

.kako-djelujemo{
    
        padding: 0;
        margin: 0 auto;
        width: 80%;
        display: flex;
        flex-direction: row;
        overflow-x: hidden;
}

.djelo {
    flex-basis: 20%;
    margin-bottom: 30px;
    
}

.djelovanje-naslov{
    text-align: center;
    margin: 20px 0;
    text-transform:uppercase ;
}
.djelo img{
    flex-basis: 90%;
        object-fit: cover;
        margin: 0;
        position: relative;
        clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

.djelo h2{
    font-size: .8em;
    text-align: center;
}

.djelo p{
    font-size: 1.4em;
    text-align: center;
    padding: 10px;
}



/*FOOTER*************************************************/
.footer{
    background-color: #074066;
    padding: 50px;
    color: white;
    position: relative;
}

.footer img{
    max-width: 200px;
    border-right: 1px solid #aab3be;
    padding-right: 30px ;
}

.footer-info{
    display: flex;
    flex-direction: row;
}

.footer ul{
    flex-basis: 25%;
    justify-content: space-between;
}
.footer-info ul li:first-child{
    font-size: 20px;
}
.footer-info ul li{
    font-weight: 100;
    font-size: 15px;
    margin: 10px;
}

.footer-info ul a{
    color: white;
}


.footer-info i{
    margin: 2px 0 2px 3 0px;
}


.prava{
    background-color: #074066;
    color: white;
    text-align: center;
    border-top: 1px solid white;
    padding: 10px 0;
}

.prava p{
    font-weight: 100;
}

.prava a{
    color: #ffca03;
}



/*O NAMA ************************************************/

.onama-naslovna{
    background-image: url('../img/sjecenje.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height:700px;
    background-position: bottom;
    position: relative;
}

.onama-naslovna h2{
    position: absolute;
    bottom: 3%;
    color: white;
    left: 0;
    font-size: 3em;
    font-weight: 900;
    background-color: rgba(0, 0, 0, .7);
    padding: 50px;
    
}


.onama-info h2{
    margin: 30px 0;
    font-weight: bold;
    text-align: center;
}
.onama-naslovna h2 span{
    font-size: 2em;
    color: gold;
    font-weight: 900;

}

.onama-info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    padding-top: 50px;
}


.onama-text{
    flex-basis: 50%;
    padding: 30px;
    text-align: justify;
}

.onama-slika{
    flex-basis: 45%;
    margin: auto;
}


.onama-slika img{
    max-width: 100%;
}

.referenca-naslov h2{
    text-align: center;
    margin: 30px 0;
}

.referenca-main{
    display: flex;
    flex-direction: row;
}

.referenca-main-single{
    flex-basis: 20%;
    margin: 20px;
}

.referenca-main-single h4{
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.referenca-main-single img{
    max-width: 100%;
}






/*USLUGE****************************************************/

.video-usluge{
    position: relative;
    background: url('../img/kuhinja.jpg');
    height: 700px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom;
}

.video-usluge h2{
    position: absolute;
    top: 50%;
    background-color: rgba(255, 255, 255, .6);
    font-size: 3em;
    font-weight: 600;
    padding: 30px 70px;
    text-align: center;
    display: block;
    width: 100%;
    text-align: center;
    
}

.usluge-naslov{
    color: white;
    padding: 30px 0;
    text-align: center;
}
.usluge2 img{
    max-width: 20%;
}

.usluge2{
    display: flex;
    flex-direction: row;
}

video{
    width: 100%;
    height: auto;
}

.usluge-sve1{
    background-image: url('../img/stub.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 30px;
   
}

.usluge-sve1 h2{
    font-weight: 100;
}
.usluge-sve{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    text-align: center;
    width: 80%;

}
.usluge-sve ul{
    display: block;
    width: 20%;
    color: white;
}

.usluge-sve ul li{
    margin: 25px 0;
}


/*GALERIJA*/

.galerija-content{
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.galerija-side{
    flex-basis: 20%;
    text-align: center;
}

.galerija-main{
    flex-basis: 70%;
}

.galerija{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.galerija a{
    height: 200px;
    width: 20%;
    margin: 10px;
    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.4);
    transition: .7s;
}


/*INICIJATIVE*/

.inicijative{
    width: 100%;
    height: 65vh;
    background-image: url('../img/rezanje.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: bottom;
    background-attachment: fixed;
}


.usluge-text{
    text-align: center;
    margin: 50px auto;
}

.usluge-text h3{
    text-transform: uppercase;
    margin: 20px 0;
}

.inicijative-pdf{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
    margin: 50px auto;
}



.inicijative-pdf-single{
    flex-basis: 22%;
    margin: 10px auto;
    position: relative;
}



.inicijative-pdf-single h4{
    font-weight: 500;
    margin: 30px 0;
}

.inicijative-pdf-single a{
    padding: 5px 10px;
    border: 1px solid #333;
    text-align: center;
}


/* KONTAKT*********************************************/

.contact-header{
    background: url('../img/phone.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
    background-attachment: fixed;
    background-position: bottom;
}

.contact-header h2{
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: white;
}

.forma{
    display: flex;
    flex-direction: row;
    padding: 50px;
}
form {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    margin-left: 50px;
  }
.form-info h3{
    font-weight: 500;
}

.form-info ul{
    padding: 50px;
    font-size: 1.2em;
}
.form-info ul li{
    margin: 5px;
}

.form-info i{
    margin-right: 10px;
    color: #074066;
    padding: 10px;
    width: 30px;
    display: inline-block;
}
  .form-info{
    flex-basis: 50%;
    font-weight: 500;
   
  }
  
  label {
    font-weight: 100;
  }
  
  input[type="text"], input[type="email"], textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button[type="submit"] {
    background-color: #074066;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #3e8e41;
  }
  



@media only screen and (max-width : 768px) {
	.demo-1 .main-title {
		font-size: 3em;
	}
}





/*MEDIA*********************************************************/

@media(max-width:768px){

    .nav{
        background-color: rgb(211, 211, 211, 1);
        left: 100%;
        position: absolute;
    }
    .nav ul{
        flex-direction: column;
        height: 100vh;
        width: 100%;
        text-align: center;
        justify-content:space-evenly ;
    }

    #header  ul li a{
        color: #333;
    }

    .nav li a{
        margin-top: 0;
        
    }


    .menu-toggle{
        display:flex;
        right: 20px;
        top: 10px;
        z-index: 1000;
        transition: .7s;
      }

      .toggleNavi{
        left: 0;
        transition: .7s;
      }
    
#header{
    flex-direction: column;
    border-bottom: none;
    box-shadow: none;
}

#header .logo{
    margin: 0;
}

.logo img{
    max-width: 300px;
}

#header .nav{
    position: absolute;
    width: 100%;
    right: 100%;
    margin: 0;
    transition: .7s;
    z-index: 9999;
}

#header img{
    width: 200px;
}
#header button{
    display: block;
    width: 60px;
    height: 40px;
    z-index: 1000;
    right: 10px;
}

.konsultacije1{
    display: block;
}

.konsultacije2{
    display: none;
}


#header ul li{
    display:block;
    width: 100%;
    padding: 50px 0;
    text-align: center;
    margin: 0;
}

.slajder img{
    display: none;
}

.slajder:first-of-type{
    background-image: url('../img/mermer.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    background-position: center;
}

.slajder:nth-of-type(2){
    background-image: url('../img/spomenik.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    background-position: center;
}

.slajder:nth-of-type(3){
    background-image: url('../img/rezanje.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    background-position: center;
}



.slajder h1{
    font-size: 1.9em;
    width: 100%;
    top: 30%;
    left: 3%;
    display: inline;
}

@keyframes fade_in{
    from{
        top:-10%;
        opacity: 0;

    }
    to{
        top: 30%;

    }
}
.slajder p{
    font-size: 1.3em;
    top: 50%;
    width: 95%;
    left: 3%;
    text-align: left;
}

@keyframes fade_text{
    from{
        top:-10%;
        opacity: 0;

    }
    to{
        top: 50%;

    }
}

.slajder a{
    padding: 10px 10px;
    font-size: .9em;
    top: 59%;
    left: 3%;

}

@keyframes fade_button{
    from{
        top:-10%;
        opacity: 0;

    }
    to{
        top: 59%;

    }
}


/*O NAMA*/

.onama-naslovna h2{
    font-size: 1.5em;
    padding: 10px;
}
.usluge{
    margin-bottom: 0;
}

.video-usluge h2{
    padding: 10px;
    font-size: 1.5em;
    width: 100%;
    text-align: center;

}
.oblast{
    margin: 20px auto;
}


.oblast h3{
    margin: 5px 0;
}
.oblast i{
    margin: 0;
}



.referenca-main{
    flex-direction: column;
}


/*PARALAX*/

.parralax{
    height: 300px;
    background-position: right;
}


.parralax h2{
    top: 35%;
    font-size: 1.4em;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    
}



.konsultacije{
    position: fixed;
    bottom: 30px;
    right: 20px;
}


.onama-info{
    flex-direction: column-reverse;
    padding-top: 0;
    margin: 20px auto;
}

.onama-text{
    padding: 0;
}

.usluge-sve{
    flex-direction: column;
}



.usluge-sve ul{
    width: 100%;
    border-bottom: 1px solid white;
}

.galerija-content{
    flex-direction: column;
    width: 95%;
}

.galerija{
    flex-direction: column;
    display: block;
    width: 95%;
}

.galerija a{
    margin: 0;
}


.usluge{
    flex-direction: column;
}

.inicijative h2{
    top: 90%;
    
}

.inicijative-pdf{
    flex-direction: column;
    
}


.inicijative-pdf-single h4{
    font-size: 1.2em;
}

.saradnici{
    height: auto;
    flex-direction: column;
}


.main-title{
    left: 32%;
}

.forma{
    padding: 10px;
    flex-direction: column;
    width: 100%;
}

form{
    margin-left: 0;
}

.form-info ul{
    padding: 10px;
}

.footer{
    padding: 5px;
}
.footer-info{
    flex-direction: column;
    text-align: center;
}

.footer-info ul{
    margin-bottom: 20px;
    border-bottom: 1px solid white;
}

.footer-info ul img{
    border: none;
    margin: 0 auto;
    padding: 0;
}

.footer-info ul li{
    font-size: 20px;
}

.prava{
    padding: 10px 0;
}


.mapa{
    width: 100%;
}

ifame{
    width: 100%;
}
}