*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
section{
   overflow: hidden;

}

.container{
    width: 80%;
    margin: 0 auto;
}

#preloader{
    background: #000 url('../img/gif1.gif') no-repeat center center;
    background-size: 10%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 9999;
}

@font-face {
    font-family: mojfont;
    src: url('../Montserrat/Montserrat-VariableFont_wght.ttf');
}

h1, h2, h3, h4, h5, h6, p, a, li{
    font-family: mojfont;
}


.under{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.flex{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}

.button1 {
    cursor: pointer;
    background-color: transparent;
    padding: 10px 30px;
    border: 1px solid #f5b517;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    color: #f5b517;
}

.button1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #f5b517;
    transition: width 0.4s ease-in-out;
   
}

.button1:hover::before {
    width: 100%;
}

.button1:hover {
    color: #fff;
}



/*-------------------------------------------------------*/





/*------------------------------------------------------SOCIAL*/
.social{
    margin-left: 20px;
    margin-top: 100px;
}
.social i{
    color: white;
    display: block;
    margin: 10px 30px;
    font-size: .7em;
}

.social h3{
    color: white;
    font-size: .9em;
    font-weight: 100;
}

.social a{
    color: white;
    cursor: pointer;
}

/*-------------------------------------INDEX*/

.language{
    position: relative;
    top: 50%;
    height: 100vh;
    background-image: url('../img/space.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    transition: 10s;
}

.language:hover{
    background-size: 110%;
    transition: 8s;
}

.language:hover .zemlja{
    max-width: 250px;
    transition: 4s;
}

.language:hover .moon{
    max-width: 350px;
    transition: 7s;
}

.language-section h1{
    color: white;
    font-weight: 100;
    text-align: center;
}



.language-section{
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.language-section a{
    color: white;
    text-shadow: 0 0 20px white;
    font-size: 2em;
    font-weight: 100;
}

.zemlja {
    border-radius: 50%;
    position: absolute;
    top: 40%;
    left: 50%;
    max-width: 200px;
    box-shadow: inset 0 0 10px #000000;
    transition: 4s;
    transform: translateX(-50%);
}

.moon{
    border-radius: 50%;
    position: absolute;
    top: 40px;
    right: -5%;
    box-shadow: 0 0 20px white;
    transition: 5s;
    max-width: 300px;
}


/*----------------------------------WELCOME------------*/


marquee{
    background-color: #333;
    color: white;
    margin: 0;
    padding: 0;
    font-size: 1.1em;
    font-family: mojfont;
    font-weight: 100;
    padding: 5px 0;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#welcome{
    height: 100vh;
    position: relative;
    background: url('../img/5311.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    border-bottom: 3px solid #f5b517;
    animation:zoom 6s alternate infinite;
    z-index: 9;
}

@keyframes zoom{
    from{
        background-size: 100%;
    } to{
        background-size: 110%;
    }
}




.emergency{
    position: fixed;
    right: 2%;
    bottom: 65px;
    color: #333;
}

.emergency a{
    color: #333;
    font-size: 1.2em;
}




.navi{
    position: fixed;
    width: 20%;
    height: 100vh;
    left:100%;
    top: 0;
    background-color: black;
    transition: .7s;
    opacity: .9;
    z-index: 9999;
    
}

.toggleNavi{
    left: 80%;
}
.menu{
    margin-top: 30px;
    margin-left: 50px;
}
.menu li{
    padding-left: 10px;
    border-radius: 10px;
    color: #f5b517;
    line-height: 50px;
    width: 100%;
    height: 50px;
    text-transform: uppercase;
}

.menu li:hover{
    background-color: white;
    box-shadow: 0 0 20px white;
    transition: .7s;
}

.menu li a{
    color: #f5b517;
}




.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: absolute;
    left: -50px;
    margin-top: 50px;
    z-index: 10000;

  }
  
  .bar {
    width: 100%;
    height: 3px;
    background-color: #f5b517;
    margin: 4px 0;
    z-index: 9999;
    transition: transform 0.3s ease;
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .logo img{
    max-width: 100%;
    margin: 50px auto;
}

header {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 999;
    transition: .9s;
    color: #f5b517;
}


header.sticky .navi{
    margin-top: 30px;
}
/*--------------SLAJDER---------------*/

.welcome{
    position: absolute;
    left: 3%;
    top: 50%;
    padding: 50px;
    width: 100%;
    opacity: 0;
    transition: .7s;
    display: flex;
    flex-direction: row;
    transform: translateY(-50%);
   
    
}
.welcome-text{
    flex-basis: 60%;
    padding: 70px;
    border-radius: 50px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    z-index: 2;
   
}

.welcome-text h1{
    font-weight: 900;
    font-size: 3em;
    color:white;
}

.welcome-text h1 i{
    color: #f5b517;
}




.welcome-img{
    flex-basis: 39%;
    margin: auto;
    
    
    
}
.welcome-img img{
    max-width: 100%;
    border-radius: 50px;
    padding: 30px;
}

.welcome.active{
    opacity: 1;
}




/*WORKSHOP*/

.work-main{
    margin: 80px auto;
    text-align: center;}

.work{
    flex-basis: 30%;
    padding: 20px;
    transition: .5s;
}


.work h2{
    margin-bottom: 30px;
    color: #f5b517;
    font-size: 1.3em;
}


.work img{
    width: 100px;
    margin: 40px 0;
}

.work:hover img{
    transform: rotate(360deg);
    transition: .7s;
}


/*-------------------------------------WORKSHOP NASLOVNA
.workshop-main{
    background-color: #f5b517;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 500px;
    position: relative;
}

.workshop-i img{
    max-width: 700px;
}

.workshop-i:first-of-type{
    width: 40%;
    position: absolute;
    top: 30%;
    left: 20%;
}
.workshop-i:last-of-type{
    position: absolute;
    bottom: -10px;
    right: 50px;
}

.workshop-i h3{
    margin: 15px 0;
    font-size: 1.8em;
    font-style: italic;
}

.workshop-i button{
    border-radius: 5px;
    padding: 10px 20px;
    background-color: white;
}




.workshop-main h2{
    position: absolute;
    top: 5%;
    left: 9%;
    font-weight: 500;
    font-style: italic;
    color: white;
    font-size: 2em;
    border-bottom: 5px solid white;
    padding: 0 30px 10px 30px;
}


*/

/*-----------------------------------PARALAX HOME ---------------------*/
.parralax{
    background: url('../img/bridge.jpg');
    height: 900px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}


.parralax-text{
    width: 50%;
    margin: auto;
    position: absolute;
    right: 10%;
    text-align: right;
    top: 50%;
    transform: translateY(-50%);
   
}

.parralax-text h2{
    color: white;
    font-weight:900;
    font-size: 3.5em;
}

.parralax-text p{
    font-size: 1em;
    font-weight: 500;
    color: white;
}





.responsive{
    margin: 100px auto;
}

.responsive-left{
    flex-basis: 50%;
}

.responsive-right{
    flex-basis: 50%;
    margin: auto;
    text-align: justify;
}





/*----------------------------KLIJENTI*/

.slider{
    border-top: 2px solid #f5b517;
}
.slider img{
    max-width: 200px;
    margin: 0 30px;
}



.klijenti-naslov{
    text-align: center;
    color: #f5b517;
    text-transform: uppercase;
    font-size: 1.7em;
}




/*---------------------------------------FOOTER----------------------------------*/
footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #282829;
    color: white;
    padding: 100px;
}

.logo-footer{
    flex-basis: 20%;
    margin: auto;
    border-bottom: 1px solid #f5b517;
    border-top: 1px solid #f5b517;
}

.logo-footer img{
    max-width: 100%;
}

.footer-info{
    flex-basis: 30%;
}

.footer-info ul li{
    margin-left: 20px;
    margin-bottom: 5px;
    font-weight: 100;
    font-size: .8em;
}

.footer-info i{
    color: white;
}

.footer-info h3{
    font-size: .9em;
    font-weight: 300;
    margin-bottom: 20px;
    color:  #f5b517;
}


.rights{
    background-color: #0c76a8;
    border-top: 1px solid white;
    color: white;
    text-align: center;
    padding: 10px 0;
}


.top-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    border: 3px solid white;
    border-radius: 50%;
    display: block;
    text-align: center;
    width: 50px;
    -webkit-text-stroke: 1px white;
    padding: 10px;
    cursor: pointer;
    display: none;

}

/*-----------------------------------------------ABOUT---------------------------*/

.explosion{
    width: 100%;
   
}

.about{
    position: relative;
    height: 100vh;
    margin-bottom: 100px;
}

.about h2{
    color: #f5b517;
    position: absolute;
    top: 50%;
    left: 10%;
    font-size: 4em;
    font-weight: 400;
    line-height: .8;
    transform: translateY(-50%);
}

.about h2 span{
    font-size: 3em;
    font-weight: 900;
    color: white;
}

.about p{
    color: white;
    font-size: 1.5em;
    font-weight: 100;
    padding: 20px;
}



.about-text{
    flex-basis: 50%;
    padding: 20px;
}

.about-text h2{
    font-size: 2em;
    color: #f5b517;
    font-weight: 300;
    margin-bottom: 20px;
}

.onama{
    margin-top:100px ;
}


.onama-pic{
    flex-basis: 45%;
    margin: auto;
  
}


.about-text p{
    text-align: justify;
    line-height: 1.4;
    z-index: 900;
    color: gray;
    line-height: 1.9em;
}



.lightning{
    width: 100%;
    height: 400px;
    position: relative;
    background-color: black;
}

.lightning img{
    position: absolute;
    left: 50%;
    max-width: 35%;
    transform: translateX(-50%);
    top: 30%;
    animation: cog .5s linear alternate infinite;
}

.lightning h2{
    position: absolute;
    color: white;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    font-size: 1em;
    display: block;
    width: 90%;
    text-align: center;
}


@keyframes cog {
    from {
        filter: grayscale(100)
    }

    to {
        filter: grayscale(0);
    }
}




/*------------------------------------------------WHAT WE DO--------------------*/



/*WEB*/

#web{
    margin: 50px auto;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.web-usluge{
    margin: 50px auto;
}

.web-usluge-single{
    flex-basis: 24%;
}

.web-usluge-single h3, .graphic-usluge-single h3{
    text-align: center;
    font-weight: 500;
    margin: 10px auto;
    height: 96px;
}


.web-usluge-single img{
    max-width: 100%;
}

.web-usluge-single p, .graphic-usluge-single p{
    text-align: justify;
}

.web-usluge-single a, .graphic-usluge-single a{
    border: 1px solid #f5b517;
    display: block;
    text-align: center;
    padding: 10px 0;
}



.lab-img{
    flex-basis: 30%;
    margin: auto;
}

.lab-content{
    flex-basis: 50%;
    text-align: justify;
}


#web, #graphic{
    display: flex;
    flex-direction: row;
}

.lab-content{
    margin: auto;
}


.cog{
    position: relative;
    height: 70vh;
    background: url('../img/lights.png');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(100);
    animation: bulb 3s linear alternate infinite;
}   

@keyframes bulb{
    from{
        filter: grayscale(100);
    }to{
        filter: grayscale(0);
    }
}


.cog img:first-of-type{
    width: 200px;
    position: absolute;
    top: 29%;
    right: 8%;
    animation: slika1 5s linear infinite;
}

.cog h2{
    position: absolute;
    top: 15%;
    left: 2%;
    font-size: 3.5em;
    font-weight: 100;
    color: white;
  line-height: .8;
}

.cog h2 span{
   font-size: 1.9em;
   color: white;
   font-weight: 900;
   
}



@keyframes slika1 {
    100% {
        transform: rotate(-360deg);
    }
}

.cog img:nth-of-type(2){
    width: 100px;
    position: absolute;
    top:25%;
    right: 19%;
    animation: slika2 2s linear infinite;
}

.cog img:nth-of-type(5){
    width: 500px;
    position: absolute;
    bottom: -30%;
    right: -10%;
    animation: slika2 7s linear infinite;
}

@keyframes slika2 {
    100% {
        transform: rotate(360deg);
    }
}

.cog img:nth-of-type(3){
    width: 200px;
    position: absolute;
    top:45%;
    right: 17%;
    animation: slika2 7s linear infinite;
}

@keyframes slika2 {
    100% {
        transform: rotate(360deg);
    }
}


.cog img:nth-of-type(4){
    width: 80px;
    position: absolute;
    right: 5%;
    top: 30%;
    animation: slika2 7s linear infinite;
}

.cog img:nth-of-type(6){
    width: 100px;
    position: absolute;
    right: 19%;
    top: 40%;
    animation: slika1 7s linear infinite;
}

.cog img:nth-of-type(7){
    width: 50px;
    position: absolute;
    right: 25%;
    top: 45%;
    animation: slika2 7s linear infinite;
}




.single-package i{
    position: absolute;
    left: 50%;
    bottom: 15%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5em;
    text-transform: uppercase;
    display: none;
}


/*GRAPHIC*/
.graphic-main{
    background-image: url('../img/graficki.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    height: 700px;
    animation: zoom 11s infinite alternate;
}
.graphic{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px auto;
    border-bottom: 1px solid #333;
    padding: 50px;
}

.graphic-tekst{
    flex-basis: 50%;
    margin: auto;
    text-align: justify;
}

.graphic-tekst h2{
    margin: 20px 0;
}

.graphic-img{
    flex-basis: 40%;
}


.graphic-usluge{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.graphic-usluge-single{
    flex-basis: 20%;
}

.graphic-usluge-single img{
    max-width: 100%;
}
/*MARKETING*/

.marketing{
    background: url('../img/marketing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 400px;
    background-attachment: fixed;
    margin: 50px auto;
    position: relative;
    animation: zoom 11s infinite alternate;
}

.marketing h2{
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-weight: 900;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 50px;
    font-size: 3em;
}


.marketing-main{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
}

.marketing-single{
    flex-basis: 30%;
}

.marketing-single img{
    max-width: 200px;
}

/*-----------------------------------------------------PORTFOLIO----------------*/

.portfolio{

    position: relative;
}
#portfolio{
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    
}
.single-customer{
   flex-basis: 25%;
   position: relative;
   transition: .7s;
   overflow: hidden;
}


.overlay{
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 900;
    transition: .7s;
}

.single-customer:hover img{
    opacity: .2;
    transition: .7s;
    transform: scale(1.2);
    overflow: hidden;
}


.single-customer:hover .overlay{
    left: 0;
}

.single-lab-img img{
    margin-right:30px ;
}

.single-customer img{
    max-width: 100%;
    border: 1px solid #333;
    transition: .5s;
    
}

.single-customer h3{
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    transition: .7s;
    text-align: center;
    font-weight: 400;
}

.single-customer:hover h3{
    bottom: 50%;
}

.single-customer a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    border: 1px solid black;
    border-radius: 30px;
    padding: 5px 50px;
    display: none;
    z-index: 900;
}

.single-customer:hover a{
    display: block;
}


/*PACKAGES*/
#packages{
    margin: 50px 0;
}

#packages h2{
    text-align: center;
    font-size: 2em;
    font-weight: 100;
    margin: 30px 0;
    width: 80%;
    border-bottom: 1px solid black;
    margin: 20px auto;
}
.packages{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
}

#packages p{
    text-align: center;
    font-size: 1.5em;
    margin: 20px 0;
    font-weight: 100;
}
.single-package{
    width: 20%;
    position: relative;
}

.single-package img:last-of-type{
    position: absolute;
    top: 5%; 
    left: 0;   
    max-width: 100px;

}


.single-package p{
    position: absolute;
    top: 1%;
    width: 100%;
    transform: rotateY(-90deg);
    text-align: center;
    padding: 10px;
    transition: .7s;
    font-size: 1em;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}
.single-package img{
    max-width: 200px;
    transition: transform 0.5s ease; 
   
}

.single-package:hover img{
    transform: rotateY(-90deg); /* rotiranje slike za 180 stupnjeva po Y osi */
}


.single-package:hover p{
    transform: rotateY(0deg);
    transition: transform 0.5s ease;
}

.parralax-what-we-do{
    background: url('../img/rain.jpg');
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    background-size: 100%;
    margin-bottom: 30px;
    
}

.parralax-what-we-do h2{
    position: absolute;
    color: white;
    top: 30%;
    left: 10%;
    width: 40%;
    font-size: 7em;
    border-top: 4px solid white;
    border-bottom: 4px solid white;
    padding: 0 40px;
    z-index: 900;
    font-weight: 900;
}

.parralax-what-we-do button{
    position: absolute;
    bottom: 8%;
    left: 22%;
    padding: 10px 30px;
    font-size: 1.2em;
    background-color: white;
    border: 1px solid white;
    box-shadow: 0 0 20px white;
    border-radius: 20px;
    color: #0c76a8;
    cursor: pointer;
    transition: .7s;
    z-index: 900;
}


.parralax-overlay{
    background-color: rgba(0,235,235,0.2);
    height: 800px;
    position: absolute;
    width: 100%;
    z-index: 500;
}

.parralax-faqs{
    position: absolute;
    top:0;
    right: -110%;
    height: 800px;
    width: 100%;
    background-color: #f5b517;
    opacity: 1;
    padding: 100px;
    z-index: 900;
    transition: .7s;
    text-align: center;
}

.fa-close{
    color: white;
    font-size: 1.9em;
    position: absolute;
    right: 20px;
    cursor: pointer;
    
}

.parralax-faqs h3{
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.5em;
    margin: 20px 0;
    letter-spacing: 3px;
}
 
.faqs-single p{
    color: black;
    text-align: center;
    font-style: italic;
    font-size: 1.2em;
}

/* KONTAKT */


.large-header{
    background: url('../img/connect.png');
    background-repeat: no-repeat;
    background-size: cover;
    height:400px ;
    background-position: bottom;
    position: relative;
}
canvas {
    position: relative;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }

#forma{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 0;
    background-color: #e1e7ed;
    
}

.contact-info{
    flex-basis: 40%;
    list-style: none;
    padding: 20px;
    margin: auto;
    border-right: 1px solid black;
    box-sizing: border-box;
}

.forma{
    border-radius: 5px;
    flex-basis: 40%;
    padding: 30px;
    z-index: 500;
    margin: auto;

}

input{
    width: 100%;
    height: 50px;
    margin: 5px 0;
    text-align: center;
    border: 2px solid #0c76a8;
    border-radius: 10px;
    z-index: 500;
}

textarea{
    width: 100%;
    height: 200px;
    border: 2px solid #0c76a8;
    margin: 10px 0;
    border-radius: 10px;
    text-align: center;
}

.posalji{
    background-color: #0c76a8;
    color: white;
    cursor: pointer; 
    transition: .7s;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2em;
}

.posalji:hover{
    background-color: #f5b517;
    color: #0c76a8;
    transition: .7s;
}


.large-header h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    font-size: 3em;
    color: white;
    font-weight: 100;
}

.contact-info ul li{
    font-size: 1.2em;
    font-weight: 100;
    font-style: italic;
    margin: 5px 20px;
}

.contact-info h3{
    margin: 20px 0;
    color: #333;
    font-weight: 500;
}

.contact-info img{
    max-width: 50px;
    border: 1px solid white;
    padding: 5px;
}

.contact-info i{
    color: #0c76a8;
}

.pozivi ul{
    display: inline-block;
}

.forma button{
    width: 100%;
    background-color: #f5b517;
    border-radius: 10px;
    margin-top: 20px;
    height: 50px;
}

/*MEDIA*/
@media only screen and (max-width: 767px){
    

    /*HOME*/


    .language{
        background-size: cover;
    }

    .language:hover{
        background-size: cover;
    }

    .language:hover .zemlja{
        left: -50%;
        transition: 2s;
    }

    .language:hover .moon{
        right: -50%;
        transition: .9s;
    }
    .language-section h1 span{
        font-size: .7em;
        width: 100%;
        text-align: center;
        top: 50%;
    }

    
    .logo img{
        max-width: 100px;
        margin: auto;
    }
    .navi{
        width: 80%;
        opacity: .8;
    }
    .toggleNavi{
        left: 40%;
    }

    .menu{
        margin-top: 100px;
        margin-left: 10px;
    }

   
    #welcome{
        background-size: cover;
        width: 100%;
        background-position: top;
        overflow: hidden;
        animation: none;
        height: 100vh;
    }

   

    .welcome{
        padding: 0;
        top: 50%;
        flex-direction: column;
        width: 90%;
        
    }

    #welcome h5{
        font-size: 1em;
    }
    .container{
        width: 95%;
        margin:0 auto;

    }

    .welcome-text{
        padding: 30px;
        border-radius: 5px;
    }

  
   
    .moon{
        width: 100px;
        top: 10vh;
    }

    .zemlja{
        width: 100px;
        top: 60%;
    }

 
   

    #welcome h1{
        font-size: 2em;
        width: 100%;
    }

    #welcome a{
        top:80%;
        text-align: center;
    }

    

    .work-main{
        flex-direction: column;
        margin: 0;
    }

    .work p{
        top: 15%;
    }

   .workshop-main{
    flex-direction: column;
   }

   .workshop-main h2{
    font-size: 1.3em;
   }

    .work{
        width: 100%;
    }

    .workshop-i{
        left: 10%;
    }
    .workshop-i h3{
        font-size: 1em;
    }
    .workshop-i img{
        width: 350px;
    }

    .workshop-i button{
        display: none;
    }

  

    .fa-close {
        color: white;
        font-size: 1.9em;
        right: 25px;
        cursor: pointer;
        z-index: 9998;
        top: 20px;
        position: absolute;
        top: 10px;
    }

   

    .left-workshop, .right-workshop{
        width: 95%;
        z-index: 1000;
        margin: 10px auto;
    }

    
    .responsive{
        flex-direction: column;
        
    }

    .responsive-left img{
        max-width: 100%;
    }

 

    .responsive-right h2{
        text-align: center;
        font-size: 2em;
    }

    .parralax{
        height: 412px;
        flex-direction: column;
    }

    .parralax-text{
        background-color: transparent;
        width: 90%;
    }


    .parralax h2 {
        top: 15%;
        font-size: 1.5em;
    }

    .parralax a{
        top: 65%;
        left: 7%;
        padding:5px 15px ;
    }

    .parralax span{
        font-size: 1.2em;
    }

   
    .klijenti img{
        max-width: 100px;
    }


    .parralax-what-we-do button{
        bottom: 50%;
    }

    .slider img{
        max-width: 100%;
        margin: 0;
    }

    /*ABOUT US*/

    .about h2{
        font-size: 2em;
    }
    .about h2 span{
        font-size: .7em;
    }
    .lightning img {
        max-width: 100%;
    }


    .about h2{
        font-size: 3em;
        top: 36%;
         left: 30%;
    }

    #o-nama{
        flex-direction: column;
    }

    .about-text{
        padding: 15px;
    }

    .about-text h2{
        margin-bottom: 15px;
    }

    .onama-pic {
        width: 100%;
        margin: 15px;
    }

    .onama-pic img{
        width: 100%;
    }

   

    .mreze{
        display: flex;
        flex-direction: column;
    }

    .mreze-desno i{
        font-size: 9em;
    }

    .mreze-desno h2{
        font-size: 2.5em;
    }
    .mreze-desno img{
        right:0;
        max-width: 200px;
    }

    /*WHAT WE DO*/

    .graphic-main{
        height: 200px;
        background-position: top;
    }

    .graphic-img img{
        max-width: 100%;
    }
   .graphic{
    flex-direction: column-reverse;
    padding: 10px;
   }

    .graphic h2, .web h2, .portfolio h2{
        font-size: 1.5em;
        font-weight: 100;
    }


    #graphic, #web{
        display: flex;
        flex-direction: column;
    }

    .cog h2{
        top: 22%;
        font-size: 1.9em;
    }

   
    .cog img:first-of-type{
        top: 68%;
        right: 8%;
        width: 149px;
    }

    .cog img:nth-of-type(2) {
        width: 82px;
        top: 66%;
        right: 5%;
    }

   .cog img:nth-of-type(3) {
        width: 60px;
        top: 69%;
        right: 10%;
    }

    .cog img:nth-of-type(4) {
right: -5%;
    top: 77%;

    }

    .cog img:nth-of-type(6) {
        right: -14%;
    top: 58%;
    }

    .cog img:nth-of-type(7) {
        right: 12%;
    top: 81%;
    }


    .cog img:nth-of-type(5){
            width: 216px;
    }

    .lab{
        flex-direction: column;
    }

    .lab-navigation {
        width: 100%;
    }

    .packages{
        flex-direction: column;
    }
    .lab-content{
        width: 100%;
    }

    .single-package{
        text-align: center;
        width: 100%;
        position: relative;
    }

    .single-package p{
        width: 100%;
    }

    .single-package i{
        display: block;
    }

    
    .single-lab-img h3{
        margin-left: 20px;
    }

    .single-lab-img img{
        width: 100%;
    }

    
    
   .parralax-what-we-do {
    background-size: cover;

   }

   .parralax-what-we-do h2{
    font-size: 3em;
    top: 10%;
   }

   .parralax-faqs h3{
    font-size: 1.2em;
    margin: 10px 0;
   }

   .parralax-faqs{
    padding: 15px;
    width: 100%;
   }

   .web-usluge{
    flex-direction: column;
   }
    

   .graphic-usluge{
    flex-direction: column;
   }

/*MARKETING*/

.marketing{
    background-size: cover;
    animation: none;
}

.marketing h2{
    font-size: 2em;
    left: 0;
}

.marketing-main{
    flex-direction: column;
}
/*PORTFOLIO*/

#portfolio{
    flex-direction: column;
}
   

    footer{
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .footer-info{
        margin: 20px 0;
    }

    .footer-info ul li{
        margin-left: 0;
    }

    .footer-info ul{
        padding-left: 0;
    }

     
    .footer-info h3{
        font-size: 1.3em;
        font-weight: 100;
        margin: 10px 0;
    }


    #forma{
        flex-direction: column;
    }

    .forma{
        width: 100%;
    }

    .large-header h2{
        top: 42%;
        left: 40%;
    }




}


@media only screen and (min-width: 768px) and (max-width: 1023px) {
    
  }