
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
/* ---------------VARIJABLE--------------- */

:root{
    --font_main:"Roboto", serif;
    --font_title:"Montserrat", serif;
    --font_contact:"Dancing Script", serif;
    --font_size: 16px;
    --white: #ffff;
    --color_after:#57a057;
    --weight_400: 400;
    --font_hover: rgba(255, 255, 255, 0.283);
    --transition: 0.3s all ease;
}


/* ---------------SET UP---------------- */

html{
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

h1,h2,h3,h4,h5,h6{
    text-transform: uppercase;
}

body{
    font-family: var(--font_main);
    font-size: var(--font_size);
    font-weight: var(--weight_400);
    overflow-x: hidden;
    /* min-width: 360px; */
    min-width: 250px; 

}

ul{
    list-style: none;
    list-style-position: inside;
}

a{
    text-decoration: none;
    color: var(--white);
 
    
}

a:hover{
    color: var(--font_hover);
    transition: var(--transition);

}

.container{
    width: 90%;
    margin: 0 auto;
    /* max-width: 1280px;  */
    /* border: 1px solid red; */
    /* min-width: 400px; */
}

/* .img_fluid{ 
    width: 100%; 
    display: block; 
} */

/*---------- NAVIGACIJA -------------*/

.nav{
    background: linear-gradient(to left, #0d270d, #503a35);
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 1010;
    

}

.nav .container{
    display: flex;
    align-items: center; 
    justify-content: space-between;
    font-weight: 700; 
    height: 100%;
    
    
}

.nav .container .logo{
    flex: 0 0 30%;
    padding-top: 49px;

}

.nav .container .links{
    flex: 0 0 70%;   
   
}

.nav .container .links ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    
}

.nav .container .links ul li {
    flex: 0 0 22%;
    text-align:end;
}
.nav .container a{
   text-transform: uppercase;
}


/*----------ACTIVE-------------*/
.active{
   color:#7d8825;
}

/*----------BURGER------------*/

.nav .burger{
   
   border: 1.2px solid var(--white);
   border-radius: 4px;
   width: 26px;
   height: 24px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   display: none;
   
}
.nav .burger span{

   width: 85%;
   height: 2px;
   background-color: var(--white);
   display: block;
}
.nav .burger span:nth-of-type(2){
   margin: 3.3px 0;
}
/* ----------BURGER X ------------*/
.burgerX{
   
   border: 1.2px solid var(--white);
   border-radius: 4px;
   width: 26px;
   height: 24px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   
}
.nav .burgerX span{

   width: 85%;
   height: 2px;
   background-color: var(--white);
   display: block;
   margin: 0 auto;
}
   .nav .burgerX span:nth-of-type(2){
   display: none;
}
.nav .burgerX span:first-of-type{
   rotate: 40deg;
   transform: translateY(0);
   transform: translateX(1px);
}
.nav .burgerX span:last-of-type{
   rotate: 135deg;
   transform: translateY(1px);
   transform: translateX(-1px);
} 

/*------------ DROP DOWN -----------*/

.nav .drop_down {
   background: linear-gradient(to left, #0d270d, #503a35);
   display: none;
   /* overflow: hidden; */
}
.nav .drop_down ul{
   display: flex;
   flex-direction: column;
}
.nav .drop_down ul li {
   border-top: 1px solid var(--white);
   border-radius: 10px;
   margin-bottom: 4px;
}

.nav .drop_down ul li a{
   display: block; 
   text-align: center;
   width: 100%;
   font-size: 1.2rem;
}
.display{
   display: block !important;
}
/* .displayF{
   display: flex !important;
}
.displayNone{
   display: none !important;
} */

/*------------ HEADER -----------*/

.header_wrapper{
    top: 0;
    margin-top: 0;
    height: 100vh;
    width: 100%;
    background-color: #798a2b;
    background: url(img2/header1.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;   
    object-fit: cover;
    -o-object-fit: cover;
}

.header_wrapper .container {
    height: 100%;
    position: relative;
}

.header_wrapper .container .header{

    position: absolute;
    margin-bottom: 20px;
    top: 52vh;
    height: 48vh;
    width: 100%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    text-align: center;
    
    overflow: hidden;
    /* border: 1px solid red; */
    
}

.header_wrapper .container .header h1{
    font-family: var(--font_title);
    font-size: 33px;
    text-shadow: 0 0 10px var(--color_after);
    letter-spacing: 0.1rem;
    margin-bottom: 0.3em;
    transform: translateY(55vh);
    animation: sladeIn 1s forwards ease-in-out 0.5s;
    /* border: 1px solid red; */
    
    
}
 
.header_wrapper .container .header p{
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    
}
.header_wrapper .container .header p:first-of-type{
   margin-bottom: 0.2em;
   transform: translateY(50vh);
   animation: sladeIn 1s forwards ease-in-out  2s;
   /* border: 1px solid red; */
   
}
.header_wrapper .container .header p:last-of-type{
   transform: translateY(47vh);
   animation: sladeIn 1s forwards ease-in-out  3.3s;
   /* border: 1px solid red; */
   
}

.header_wrapper .container .header h2{
   font-size: 3rem;
   color: var(--white);
   font-family: var(--font_contact);
   font-weight: 100;
   letter-spacing: 0.1rem;
   margin-top: 1.1em;
   transform: translateY(40vh);
   animation: sladeIn 1.8s forwards ease  4.5s;
   /* border: 1px solid red; */
   
   
}
 

/* -----------------FOOTER ----------------*/
 .footer{
    background: linear-gradient(to left, #0d270d, #503a35);
    height: 40vh;
 }

 .footer .container{
    height: 92%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    /* border: 1px solid yellow; */
    
 }
 .footer .container .address{
    flex: 0 0 40%;
    height: 80%;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.09rem;
    /* border: 1px solid red; */

 }

 .footer .container .address .road{
    flex: 0 0 35%;
    /* border: 1px solid greenyellow; */

 }

 .footer .container .address .phone{
    flex: 0 0 45%;
    /* border: 1px solid greenyellow; */

 }

 .footer .container .address .viber{
    flex: 0 0 20%;
    display: flex;
    align-items: flex-end;
    /* border: 1px solid greenyellow; */

 }

 .footer .container .map_wrapper{
    flex: 0 0 55%;
    height: 80%;
    border-radius: 15px;
    overflow: hidden;


 }
 .footer .container .map_wrapper iframe{
    width: 100%;
    height: 100%;
    display: block;
    position: center;
    object-fit: cover;
    -o-object-fit: cover; 

 }

 .footer .address .road p{
   letter-spacing: 0.06rem; 

 }

 .footer .phone a{
    font-size: 15x;
 }
 .footer .phone p{
   margin-top: 6px;
}
.footer .phone p:first-of-type{
   margin-top: 3px;
}


 .footer .viber a {
    margin-right: 19px;
    margin-bottom: 0;
    /* border: 1px solid blue; */
   
 }

 .footer .viber a i{
    font-size: 25px;
   

 }
 .footer h5{
    display: inline-block;
    font-size: 15px;
    margin-bottom: 10px;
 }
 .footer h5::after{
    content: "";
    display: block;
    height: 2px;
    width: 75%;
    background-color: var(--color_after);
 }
 .footer .phone h5{
    margin-top: 5px;
 }
 .footer .phone h5:last-of-type{
   margin-top: 13px;
}
 .footer .author{
    color: var(--white);
    width: 90%;
    margin: 0 auto;
    /* margin-bottom: 100px; */
    text-align: center;
    font-size: 12px;

    /* height: 50px; */
 }
 .footer .author a{
    margin-top: 5px;
    color: #e3b551;
 }
 /*.footer .author a:hover{
    color: #e3b551; 

 }*/

 /*-----------------PROIZVODI------------------*/

 .products{
    top: 0;
    margin-top: 0;
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    background-color: #493533;
    background: url(img2/products.webp);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;   
    object-fit: cover;
    -o-object-fit: cover; 
    display: flex;
    align-items: end;
    justify-content: center;
   
 }

 .products .container{
    height: 94%;
   
    
 }
 .products .container .wrapper{
    width: 100%;
    height: 97%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    letter-spacing: 0.1rem;
    color: var(--white); 
 }
 .products .container .wrapper h2{
    padding-bottom: 20px;
 }
 .products .container .wrapper p{
   font-size: 20px;
 }

 .products .container .wrapper_about {
   flex: 0 0 50%;
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   
 }
 .products .container .wrapper_about .images{
   flex: 0 0 50%;

 }
 .products .container .wrapper_about .aboutUs{
   flex: 0 0 50%;
   text-align: center;

 }
 .products .container .wrapper_priznanje{
   flex: 0 0 50%;
   display: flex;
   flex-direction: row;
   align-items: flex-end; 
   justify-content: center;

 }
 .products .container .wrapper_priznanje .priznanje{
   flex: 0 0 50%;
   text-align: center;

 }
 .products .container .wrapper_priznanje .priznanje_img{
   flex: 0 0 50%;
   
   display: flex;
   text-align: center;
   justify-content: center;

 }
  
 .products .container .wrapper_priznanje .priznanje_img img.slika2{
   display: none;
   height: 300px;
   width: 80%;
   border-radius: 15px;

 }

 /*----------------- PROBA ZA MEDIJE------------------*/
.mediji{

   padding-top: 30px;
   top: 0;
   margin-top: 0;
   height: 100vh;
   min-height: 870px;
   width: 100%;
   background-color: #1e1f0d;
   background: linear-gradient(to right,rgba(14, 35, 15, 0.543),rgba(14, 35, 15, 0.543))70%,url(img2/pro2.webp);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;   
   object-fit: cover;
   -o-object-fit: cover;
}

.mediji .container {
   height: 100%;
   position: relative;
}

.mediji_wrapper{
  position: absolute;
  top: 10vh;
  color: var(--white);
  letter-spacing: 0.1rem;
}
.mediji_wrapper h2 {
   font-family: var(--font_contact);
   display: inline-block;
   margin-bottom: 20px;
   
}
.mediji_wrapper h2::after{
   content: "";
   display: block;
   height: 2px;
   width: 75%;
   background-color: var(--color_after);
}
.mediji_wrapper p {
   margin-bottom: 55px;
}
 
.mediji_wrapper ul {
   list-style: none;
   padding: 0;
}
.mediji_wrapper ul li {
   display: flex;
   align-items: center;
   margin-bottom: 16px;
   
}

.mediji_wrapper a {
   text-decoration: none;
   color: var(--white);
   font-weight: bold;
   display: flex;
   align-items: center;
}
.mediji_wrapper a:hover {
   color: var(--color_after);
}
/* .mediji_wrapper a:visited {
   color: red;
} */

.mediji_wrapper a img {
   max-width: 120px;
   min-width: 100px;
   min-height: 100px;
   max-height: 120px;
   margin-right: 10px;
   border-radius: 8px;
   display: inline-block;
   transition: var(--transition);
   box-shadow: 0px 4px 10px white;

}

.mediji_wrapper a img:hover {
   opacity: 0.8;
}

/* .mediji_wrapper a span {
 
  
} */
.mediji_wrapper a i {
   width: 12px;
   height: 12px;
   margin-left: 5px;
   opacity: 0.7;
}


  

 /*-----------------GALERIJA-------------------*/

 .galery{
    top: 0;
    margin-top: 0;
    height: 100vh;
    width: 100%;
    background-color:#c5956d ;
    background: url(img2/galery.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;   
    object-fit: cover;
    -o-object-fit: cover; 
 }

 .galery .container{
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
   
 }

 .galery .container .img_wrapper{

   flex: 0 0 80%;
   width:  80%;
   height: 80%;
   border: 2px solid #503a35;
   border-radius: 25px;
   box-shadow: -35px -35px 40px #463431 , inset 0 0 50px black ;
   overflow: hidden;
   position: relative;
   
 }
 .galery .container .img_wrapper img{
    width: 100%;
    height: 100%;
    display: block;
    position: center;
    object-fit: cover;
    -o-object-fit: cover; 
    border-radius: 25px; 
    position: absolute;
    top: 0;
    left: 0;
    
    
 }

 .galery .container .img_wrapper img:nth-of-type(2){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 2s ;
   
}
.galery .container .img_wrapper img:nth-of-type(3){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 7s ;
   
}
.galery .container .img_wrapper img:nth-of-type(4){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 12s ;
   
}
.galery .container .img_wrapper img:nth-of-type(5){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 17s ;
   
}
.galery .container .img_wrapper img:nth-of-type(6){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 22s ;
   
}
.galery .container .img_wrapper img:nth-of-type(7){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 27s ;
   
}
.galery .container .img_wrapper img:nth-of-type(8){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 32s ;
   
}
.galery .container .img_wrapper img:nth-of-type(9){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 37s ;
   
}
.galery .container .img_wrapper img:nth-of-type(10){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 42s ;
   
}
.galery .container .img_wrapper img:nth-of-type(11){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 47s ;
   
}
.galery .container .img_wrapper img:nth-of-type(12){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 52s ;
   
}
.galery .container .img_wrapper img:nth-of-type(13){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 57s ;
   
}
.galery .container .img_wrapper img:nth-of-type(14){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 62s ;
   
}
.galery .container .img_wrapper img:nth-of-type(15){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 67s ;
   
}
.galery .container .img_wrapper img:nth-of-type(16){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 72s ;
   
}
.galery .container .img_wrapper img:nth-of-type(17){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 77s ;
   
}
.galery .container .img_wrapper img:nth-of-type(18){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 82s ;
   
}
.galery .container .img_wrapper img:nth-of-type(19){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 87s ;
   
}
.galery .container .img_wrapper img:nth-of-type(20){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 92s ;
   
}
.galery .container .img_wrapper img:nth-of-type(21){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 97s ;
   
}
.galery .container .img_wrapper img:nth-of-type(22){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 102s ;
   
}
.galery .container .img_wrapper img:nth-of-type(23){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 107s ;
   
}
.galery .container .img_wrapper img:nth-of-type(24){
   transform: scaleY(0);
   animation: imgSlide 3s forwards 112s ;
   
}



 /*-----------------KONTAKT--------------------*/

 .contact{
    top: 0;
    margin-top: 0;
    height: 100vh;
    width: 100%;
    background-color: #304212;
    background: linear-gradient(to left,rgba(0, 0, 0, 0.463),rgba(0, 0, 0, 0.801)70%),url(img2/contact2.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;   
    /* filter: blur(3px); */
    /* filter: opacity(100%); */
 }
 .contact .container{
    height: 100%;
    position: relative;
 }
 .contact .container .contact_wrapper{
    position: absolute;
    top: 31vh;
    right: 0;
    width: 400px;
    height: 20%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    letter-spacing: 0.1rem;
    /* border: 1px solid red; */

 }
 .contact .container .contact_wrapper .phone{
    flex: 0 0 70%;
    /* border: 1px solid yellow; */

 }

 .contact .container .contact_wrapper .viber{
    flex: 0 0 30%;
    /* border: 1px solid yellow; */

 }

 .contact .phone a{
    font-size: 1.3rem;
 }

 .contact h2{
    display: inline-block;
    font-size: 25px;
    margin-bottom: 50px;
    color: var(--white);
    font-family: var(--font_contact);
    font-weight: 700;
    letter-spacing: 0.2rem;

 }

 .contact h2::after{
    content: "";
    display: block;
    height: 2px;
    width: 75%;
    background-color: var(--color_after);
 }
 .contact .viber a {
    display: inline-block;
    margin-right: 18px;
    margin-top: 10px;
    
   
 }

 .contact .viber a i{
    font-size: 2rem;
 }

 .contact .container .form{
   position: absolute;
   top: 54vh;
   right: 0;
   width: 400px;
   height: 43vh;
   /* border: 1px solid red; */
 
 }
 .contact .container .form input{
   border: none;
   width: 100%;
   height: 8vh;
   background: transparent;
   color: var(--white);
   font-size: 1.2rem;
   font-family: var(--font_main);
   border-bottom: 2px solid var(--color_after);
   box-shadow: inset 0 0 20px var(--color_after);
   margin-bottom: 5px;
   border-radius: 7px;
 }
 .contact .container .form textarea{
   border: none;
   background: transparent;
   color: var(--white);
   font-size: 1.2rem;
   font-family: var(--font_main);

   width: 100%;
   min-width: 100%;
   max-width: 100%;
   height: 20vh;
   min-height: 20vh;
   max-height: 20vh;
   border-bottom: 2px solid var(--color_after);
   box-shadow: inset 0 0 20px var(--color_after);
   border-radius: 7px;
 }
 .contact .container .form button{
   border: 2px solid var(--color_after);
   box-shadow: inset 0 0 15px var(--color_after);
   color: var(--white);
   background: transparent;
   font-size: 1.3rem;
   border-radius: 7px;
   text-align: center;
   cursor: pointer;
   display: block;
   width: 6rem;
   margin: 7px auto;
   
  
 }
 .contact .container .form button:hover{
   background-color: var(--color_after);
   transition: var(--transition);
 }
 .contact .container .form input:focus,
 .contact .container .form textarea:focus{
   
   outline: none;
   border: 4px solid var(--color_after);
  
 }
 .contact .container .form p{
   font-size: 20px;
   font-weight: bold;
   color: var(--white); 
   border-radius: 5px;
   text-align: center;
   display: none;  
  
   animation: porukaForma 1s forwards ease-in-out 3s;
   border: 2px solid #57a057;
}


 /*---------ANIMACIJE-------------*/

 @keyframes porukaForma{
   0%{
      transform: scale(1);
   }
   100%{
      transform: scale(0);
   }

 }

 @keyframes sladeIn{
   0%{
      /* transform: translateY(900%); */

   }
   100%{
      transform: translateY(0);

   }
 }

 @keyframes imgSlide{
   0%{
      transform: scaleY(0);
   }
   100%{
      transform: scaleY(1);
   }
 }


 /*-----------------RESPONSIVE------------------*/


 /*----------------- 2700px------------------*/


 @media(max-width: 2700px){

   
   
 }



 /*----------------- 2400px------------------*/


 @media(min-width: 2400px){
   
   
 }


 /*----------------- 1920px------------------*/


 @media(min-width: 1920px){
   .contact .container .contact_wrapper{
      top: 25vh;
   }
   .contact .container .form{
      top: 48vh;

   }
   
 }

 /*----------------- 1600px------------------*/


 @media(min-width: 1600px){
   .products .container .wrapper{
      max-width: 1300px;
      margin: 0 auto;
      
   }
   .contact .container .contact_wrapper{
      top: 28vh;
   }
   .contact .container .form{
      top: 51vh;
   }
   
 }

 /*----------------- 1440px------------------*/


 @media(min-width: 1440px){
   .galery .container .img_wrapper{
      max-width: 995px;
      max-height: 667px;

   }
   .products .container .wrapper{
      max-width: 1230px;
      max-height: 700px;
      margin: 0 auto;
   
   }
   .products .container .wrapper h2{
      padding-bottom: 30px;
      font-size: 25px;
   }
   .products .container .wrapper p{
     font-size: 18px;
     
   }
   .products .container .wrapper .wrapper_priznanje p{
      font-size: 18px;
      
    }
   
 }

 @media(max-width: 1440px){
   .mediji{
      top: 0;
      margin-top: 0;
      height: 110vh;
     
    
   }
   .galery .container .img_wrapper{
      max-width: 995px;
      max-height: 667px;

   }
   
 }
 
 /*----------------- 1280px------------------*/


 @media(max-width: 1280px){
   
   
 }

 /*----------------- 1150px------------------*/


 @media(max-width: 1150px){

   .products{
      height: 110vh;
   }
   .products .container .wrapper h2{
      padding-bottom: 30px;
      font-size: 24px;
   }
   .products .container .wrapper p{
     font-size: 18px;
     
   }
   .products .container .wrapper .wrapper_priznanje p{
      font-size: 18px;
      
    }
   
 }

 
 /*----------------- 1024px------------------*/


 @media(max-width: 1024px){
   
 }

 
 /*----------------- 956px------------------*/


 @media(min-width: 956px){
   .drop_down{
      display: none !important;
   }
 }

  /*----------------- 955px------------------*/

 @media(max-width: 955px){
   
   .nav .container .links{
      display: none;
     
   }
   .nav .burger{
      display: flex;
   }

   /* ----------PRODUCTS--------- */
   .products{
      height: 110vh;
   }
   .products .container .wrapper h2{
      padding-bottom: 30px;
      font-size: 25px;
   }
   .products .container .wrapper p{
     font-size: 18px;
     
   }
   .products .container .wrapper .wrapper_priznanje p{
      font-size: 18px;
      
    }


 }
 /*----------------- 912px------------------*/


 @media(max-width: 912px){
   
   
 }

 /*----------------- 860px------------------*/
 @media(max-width:860px){
   .products{
      height: 120vh;
      background-color: #493533;
      background: url(img2/products24.webp);
      background-position: left;
      background-size: cover;
      background-repeat: no-repeat;   
      object-fit: cover;
      -o-object-fit: cover; 
   }
   .products .container .wrapper h2{
      padding-bottom: 30px;
      font-size: 25px;
   }
   .products .container .wrapper p{
     font-size: 18px;
     
   }

   .products .container .wrapper_about .images{
      flex: 0 0 50%;
   
   
    }
    .products .container .wrapper_about .aboutUs{
      flex: 0 0 50%;
      text-align: center;
   
    }
    .products .container .wrapper_priznanje{
      flex: 0 0 50%;
      display: flex;
      flex-direction: row;
      align-items: flex-end; 
      justify-content: center;
   
    }

   .products .container .wrapper_priznanje .priznanje{
      flex: 0 0 50%;
      text-align: center;
      padding-right: 20px;
    }

    .products .container .wrapper_priznanje .priznanje_img{
      flex: 0 0 50%;
      
      display: flex;
      text-align: center;
      justify-content: center;
   
    }
   .products .container .wrapper_priznanje .priznanje_img img{
      height: 330px;
      width: 100px;

   }
 }
 /*----------------- 834px------------------*/
 @media(max-width: 834px){
   .products .container .wrapper_about .images{
      flex: 0 0 35%;

    }
    .products .container .wrapper_about .aboutUs{
      flex: 0 0 65%;
   
    }
    .products .container .wrapper_priznanje .priznanje_img img{
      height: 350px;
      width: 120px;

   }
   .mediji{
      min-height: 900px;
   }

 }

 /*----------------- 768px------------------*/
 @media(max-width: 768px){
   .products .container .wrapper_about .images{
      flex: 0 0 40%;

    }
    .products .container .wrapper_about .aboutUs{
      flex: 0 0 60%;
      text-align: right;
   
    }
   
    .products .container .wrapper_priznanje .priznanje {
      text-align: left;
     }
    

 }
  /*----------------- 700px------------------*/
  @media(min-width:700px){
   
    .products .container .wrapper_priznanje .priznanje_img img.slika2{
      display: block;
   
    }
     
  }


  @media(max-width: 700px){

   .products{
      height: 130vh;
      background-color: #493533;
      background: linear-gradient(to left,rgba(0, 0, 0, 0.279),rgba(0, 0, 0, 0.475)20%),url(img2/products24.webp);
      background-position: left;
      background-size: cover;
      background-repeat: no-repeat;   
      object-fit: cover;
      -o-object-fit: cover; 
   }
   .products .container .wrapper_priznanje{
      flex: 0 0 50%;
      display: flex;
      flex-direction: row;
      align-items: flex-end; 
      justify-content: center;
   
    }

   .products .container .wrapper_priznanje .priznanje{
      flex: 0 0 70%;
      text-align: left;
      padding-right: 20px;
    }

    .products .container .wrapper_priznanje .priznanje_img{
      flex: 0 0 30%;
   
    }
     

   .contact .container .contact_wrapper{
      width: 350px;
      height: 20%;
      /* top: 28vh; */
      /* right: 10%; */
   }
   .contact h2{
      font-size: 23px;
   }
   .contact .container .form{
      width: 350px;
      /* top: 51vh; */
      /* right: auto; */
   }
   .contact .phone a{
      font-size: 1.2rem;
   }
  
   .contact .viber a i{
      font-size: 1.9rem;
   }
  
    
  }

 /*----------------- 565px------------------*/


 @media(max-width: 565px){
   .container{
      width: 95%;
   }
   .products{
      height: 135vh;
      
   }
   .products .container .wrapper h2{
      padding-bottom: 20px;
      font-size: 20px;
   }
   .products .container .wrapper p{
     font-size: 17px;
     
   }

   .products .container .wrapper_about .images{
      flex: 0 0 30%;
   
    }
    .products .container .wrapper_about .aboutUs{
      flex: 0 0 70%;
      text-align: center;
   
    }

   .products .container .wrapper_priznanje .priznanje{
      
      text-align: center;
      padding-right: 10px;
   
    }

   .galery .container .img_wrapper{
      width: 100%;
      flex: 0 0 90%;

   }
   .galery .container {
      width: 97%;
      height: 87%;

   }
   
   .contact .container .contact_wrapper{
      /* top: 28vh; */
      right: 10%;
   }
   .contact .container .form{
     /* top: 51vh; */
      right: 10%;
   }
  

   .footer{
      height: 65vh;

   }
   .footer .container{
      height: 90%;
      flex-direction: column;
      align-items: stretch;
      justify-content: space-between;
      
   }
   .footer .container .address{
      margin-top: 16px;
      margin-bottom: 6px;
      flex: 0 0 43%;
      width: 100%;
  
   }
   .footer .container .address .viber{
      align-items: center;
  
   }

   .footer .container .map_wrapper{
      flex: 0 0 51.5%;
      overflow: hidden;
   }
   .footer .container .map_wrapper iframe{
      width: 100%;
      height: 100%;
      display: block;
      position: center;
      object-fit: cover;
      -o-object-fit: cover; 
  
   }
   .footer .author{
      margin-top: 16px;
      text-align: center;
      font-size: 12px;
   }
   .footer .author a{
      margin-top: 5px;
   }
 }

 /*----------------- 520px------------------*/
 @media(max-width:520px){

 .galery .container .img_wrapper{
   height: 75%;
  }
}

 /*----------------- 428px------------------*/
 @media(max-width:428px){
   .header_wrapper .container .header p{
      font-size: 1rem;
      letter-spacing: 0.1rem;
      /* border: 1px solid red; */
      
  }

   .products{
      height: 140vh;
   }

   .products .container .wrapper_about .images{
      flex: 0 0 20%;
   
    }
    .products .container .wrapper_about .aboutUs{
      flex: 0 0 80%;
    }

   .products .container .wrapper_priznanje .priznanje{
      flex: 0 0 80%;
      padding-right: 20px;
   
    }

    .products .container .wrapper_priznanje .priznanje p{
     font-size: 17px;
   
    }
    .products .container .wrapper_priznanje .priznanje_img{
      flex: 0 0 20%;
   
    }
    .mediji{
      min-height: 875px;
   }
   .mediji_wrapper a img {
      max-width: 110px;
      min-width: 100px;
      min-height: 100px;
      max-height: 110px;
      margin-right: 10px;
      border-radius: 8px;
      display: inline-block;
      transition: var(--transition);
      box-shadow: 0px 4px 10px white;
      /* border: 1px solid white; */
     
     
   }
   
   
}
 /*----------------- 414px------------------*/


 @media(max-width: 414px){
   
   .contact .container .contact_wrapper{
      width: 350px;
      height: 19%;
      top: 31vh;
      right: 2.5%;
   }
   .contact .container .form{
      width: 350px;
      height: 270px;
      /* top: 51vh; */
      
      right: 2.5%;
   }
   .contact .phone a{
      font-size: 1.2rem;
   }
  
   .contact .viber a i{
      font-size: 1.9rem;
   }
   .mediji{
      min-height: 885px;
   }
   .mediji_wrapper a img {
      max-width: 100px;
      min-width: 100px;
      min-height: 100px;
      max-height: 100px;
      margin-right: 10px;
      border-radius: 8px;
      display: inline-block;
      transition: var(--transition);
      box-shadow: 0px 4px 10px white;
      /* border: 1px solid white; */
     
     
   }
   
  
   
 }
 /*----------------- 412px------------------*/


 @media(max-width: 412px){
   
   .contact .container .contact_wrapper{
      width: 350px;
      height: 19%;
      right: 3.3%;
   }
   .contact .container .form{
      width: 350px;
      height: 270px;
      /* top: 51vh; */
      
      right: 3.3%;
   }
  
   
 }

 /*----------------- 390px------------------*/
 @media(max-width:390px){

   .products .container .wrapper p{
     font-size: 15px;
     
   }

   .products .container .wrapper_about .aboutUs{
     
      text-align: center;
   
    }
   

   .products .container .wrapper_priznanje .priznanje{
      text-align: center;
   
    }

    .products .container .wrapper_priznanje .priznanje p{
     font-size: 15px;
   
    }

  
   .contact .container .contact_wrapper{
      top: 33vh;
      width: 330px;
      height: 19%;
      right: 2.5%;
   }
   .contact .container .form{
      width: 330px;
      right: 2.5%;
   }
   .contact .phone a{
      font-size: 1.1rem;
   }
  
   .contact .viber a i{
      font-size: 1.8rem;
   }
   .contact h2{
      font-size: 21px;
   }
  
   
}

 /*----------------- 375px------------------*/
 @media(max-width:375px){
   
   .products .container .wrapper p{
      font-size: 17px;
      
    }

    .products .container .wrapper_about .aboutUs{
   
      text-align: center;
   
    }
    

   .products .container .wrapper_priznanje .priznanje{
      flex: 0 0 80%;
      text-align: center;
   
    }

    .products .container .wrapper_priznanje .priznanje p{
     font-size: 17px;
   
    }
   

   .galery .container .img_wrapper{
      width: 100%;
      flex: 0 0 93%;

   }
   .galery .container {
      width: 97%;
      height: 87%;

   }
   .contact .container .contact_wrapper{
      width: 320px;
      height: 18%;
      right: 2.7%;
   }
   .contact .container .form{
      width: 320px;
      right: 2.7%;
   }
   .contact .phone a{
      font-size: 1.1rem;
   }
  
   .contact .viber a i{
      font-size: 1.8rem;
   }
   .contact h2{
      font-size: 21px;
   }
   
}
 /*----------------- 360px------------------*/
 
 @media(max-width:360px){
   .products{
      height: 150vh;
   }
   .products .container .wrapper_priznanje .priznanje{
   
      text-align: center;
    }
    .contact .container .contact_wrapper{
      width: 300px;
      height: 18%;
      right: 3.2%;
   }
   .contact .container .form{
      width: 300px;
      right: 3.2%;
   }
   .contact .phone a{
      font-size: 1rem;
   }
  
   .contact .viber a i{
      font-size: 1.7rem;
   }
   .contact h2{
      font-size: 19px;
   }
   

 }
 /*------------------340px------------------*/

 @media(max-width:340px){
   .contact .container .contact_wrapper{
      width: 285px;
      height: 18%;
      right: 1.3%;
   }
   .contact .container .form{
      width: 285px;
      right: 1.3%;
   }
   .contact .phone a{
      font-size: 1rem;
   }
  
   .contact .viber a i{
      font-size: 1.7rem;
   }
   .contact h2{
      font-size: 18px;
   }
 }

 /*----------------- 320px------------------*/
 
 @media(max-width:320px){
   .header_wrapper .container .header h2{
      font-size: 2.85rem;
      padding-left: 45px;
      padding-right: 45px;
   }
   
   
   .products .container .wrapper h2{
      padding-bottom: 20px;
      font-size: 20px;
   }
   .products .container .wrapper p{
     font-size: 17px;
     
   }
    .products .container .wrapper_priznanje{
      flex: 0 0 50%;
   
    }

   .products .container .wrapper_priznanje .priznanje{
    
      padding-left: 20px;
      padding-right: 2px;
    }

   
   .contact .container .contact_wrapper{
      width: 275px;
      height: 18%;
      right: 1%;
   }
   .contact .container .form{
      width: 275px;
      right: 1%;
   }
   .contact .phone a{
      font-size: 1rem;
   }
  
   .contact .viber a i{
      font-size: 1.6rem;
   }
   .contact h2{
      font-size: 17px;
   }
}

/*----------------- 304px------------------*/
 
@media(max-width:304px){
   .products .container .wrapper_priznanje .priznanje{
      padding-right: 0;
   
    }
   .products .container .wrapper h2{
      padding-bottom: 10px;
      font-size: 18px;
   }
   .products .container .wrapper p{
     font-size: 16px;
     
   }
   .products .container .wrapper .wrapper_priznanje p{
      font-size: 16px;
      
    }
    .header_wrapper .container .header h2{
      font-size: 2.6rem;
   }
   .contact .container .contact_wrapper{
      width: 260px;
      height: 18%;
      right: 1%;
   }
   .contact .container .form{
      width: 260px;
      right: 1%;
   }
   .contact .phone a{
      font-size: 1rem;
   }
  
   .contact .viber a i{
      font-size: 1.5rem;
   }
   .contact h2{
      font-size: 17px;
   }

}

/*----------------- 290px------------------*/
 
@media(max-width:290px){
   .products .container .wrapper h2{
      padding-bottom: 10px;
      font-size: 17px;
   }
   .products .container .wrapper p{
     font-size: 15px;
     
   }
   .products .container .wrapper .wrapper_priznanje p{
      font-size: 15px;
      
    }

   .contact .container .contact_wrapper{
      width: 240px;
      height: 18%;
      right: 2%;
   }
   .contact .container .form{
      width: 240px;
      right: 2%;
   }
   .contact .phone a{
      font-size: 1rem;
   }
  
   .contact .viber a i{
      font-size: 1.5rem;
   }
   .contact h2{
      font-size: 16px;
   }

}


/*----------------- 280px------------------*/

@media(max-width:280px){
   
    .header_wrapper .container .header h2{
      font-size: 2.5rem;
   }

}

  

/*----------------- 320 width i 412 height------------------*/

@media(max-width:320px) and (max-height:412px){
   
   .body{
      min-height: 290vh;
      font-size: 16px;
   }
   .header_wrapper .container .header{
      margin-bottom: 20px;
      
  }
  
  .header_wrapper .container .header h1{
      font-size: 20px;
      letter-spacing: 0.1rem;
      margin-bottom: 0.2em;
  }
   
  .header_wrapper .container .header p{
      font-size: 0.8rem;
      letter-spacing: 0.1rem;
      
  }
  .header_wrapper .container .header h2{
   font-size: 2rem;
   margin-top: 1em;
  }
   .footer{
      height: 120vh;
   } 
   .products{
      min-height: 250vh;
      padding-bottom: 10px;
      font-size: 15px;
   }
   .products .container .wrapper{
      width: 100%;
      height: 97%;
   }
   .products .container .wrapper h2{
      padding-bottom: 10px;
      font-size: 18px;
   }
   .products .container .wrapper p{
     font-size: 15px;
     
   }
   .products .container .wrapper .wrapper_priznanje p{
      font-size: 15px;
      
    } 
   
   .contact .container .form{
      width: 280px;
      height: 180px;
      margin-top: 15px;
    
    }
    .contact .container .form input{
      height: 20px;
    
    }
    .contact .container .form textarea{
      height: 25px;
    
    }
    .contact .container .form button{
      height: 30px;
      font-size: 20px;
    
    }

    .contact h2{
      font-size: 18px;
      margin-bottom: 30px;
      
   }
   


}
  





 