*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

button{
    padding: 5px 10px;
    cursor: pointer;
    color: #333;
    margin-top: 30px;
    border: none;
}

button:hover{
    transform: scaleX(100%);
    background-color:var(#ef7a34) ;
}



h1, h2, h3, h4, h5, a, li, p, span, input, textarea, button, label{
    font-family: font;
}

p{
  text-align: justify;
}

@font-face {
    font-family: font;
    src: url(../Montserrat/Montserrat-VariableFont_wght.ttf);
  }

.container-fluid{
    width: 100%;
}

.container{
    width: 80%;
    margin: 0 auto;
}
section{
    overflow: hidden;
}


.flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#preloader{
  background: #ffffff url('../img/preloader.gif') no-repeat center center;
  background-size: 20%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;

}

html{
  scroll-behavior: smooth;
}


/*COOKIES*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-text h3 {
  margin: 0 0 5px 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: #0073e6;
  color: #fff;
}

.btn-secondary {
  background: #444;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.cookie-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  width: 300px;
}

.cookie-modal-content h3 {
  margin-top: 0;
}

.modal-buttons {
  margin-top: 20px;
  text-align: right;
}


/*HOME*/

/*HEADER*/

.navigacija{
    position: fixed;
    z-index: 9990;
    background-color: rgba(250, 250, 250, 0.5);
    width: 100%;
    transition: .7s;
    padding: 10px;
}

.menu ul{
    width: 40%; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin:auto;
}

.menu li{
    color: #27ae60;
    padding-bottom: 5px;
    position: relative;
    font-weight: 600;
}






ul li i{
  color: #939d67;
}

.menu li i{
  color: #939d67;
}

.menu li a{
  color: #333;
}

.logo{
  width: 100%;
  margin: auto;
}
.logo img{
    max-width: 100px;
    display: block;
    margin: auto;
}

.sticky{
  background-color: rgb(250, 250, 250);
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: .7s;
}

.social{
  margin: auto;
  position: relative;
  padding: 10px;
}

.social a:first-of-type{
  color: red;
}
.social a:last-of-type{
  position: absolute;
  right: 0;
  color: gold;
  font-weight: 500;
}

/*MENU TOGGLE*/

.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 {
    width: 100%;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: transform 0.3s ease;
    z-index: 9999;
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background-color: #333;
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: #333;
  }

  .toggleNavi{
    left: 0;
    transition: .7s;
}


/* SLAJDER */

.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 7s linear alternate infinite;
    -webkit-animation: zoom 7s linear alternate infinite;
  }


  @keyframes zoom{
    from{
        transform: scale(1);
    }
    to{
        transform: scale(1.2);
    }
}
  
  .slide.active {
    opacity: 1;
  }


  .slide-text {
    position: absolute;
    width:60%;
    bottom: 5%;
    right: 2%;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    box-shadow: 0 0 20px black;
  
  }

  .slide-text h1{
    font-size: 3em;
    font-weight: 700;
  }



  .slide-text p{
    font-size: 1.5em;
    color: white;
    font-weight: 100;
    
  }



  /*MAIN OFFER*/
.sekcija{
  text-align: center;
  font-weight: 300;
  margin: 40px auto;
  text-transform: uppercase;
}
  .main-offer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px auto;
    width: 70%;
  }

  .main-offer-single{
    flex-basis: 30%;
    text-align: center;
  }

  .main-offer-single img{
    max-width: 70px;
    margin: 30px auto;
  }





  .main-offer-single h4{
    text-transform: uppercase;
    margin: 10px auto;
    color: #939d67;
  }



  .about-main{
    display: flex;
    flex-direction: row;
    justify-content:center;
    margin: 50px auto;
  }

  .about-main-img{
    flex-basis: 50%;
  }

  .about-main-img img{
    margin: auto;
  }

  .about-main-text{
    flex-basis: 50%;
    margin: auto;
  }

  .about-main-text h2{
    margin: 20px auto;
  }

  .parralax{
   
    background-size: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 600px;
    position: relative;
    transition: filter 0.3s ease;
    text-align: center;
    
  }

  .parralax-text{
    position: absolute;
    top: 25%;
    right: 10%;
    width: 40%;
    
  }


  .parralax::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/pejzaz.jpg'); 
  background-attachment: fixed;
  background-size: cover;
  filter: blur(5px);
  z-index: -1;
  }

  .parralax h2{
    color: transparent;
    -webkit-text-stroke: 1px white;
    font-size: 3.5em;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  .parralax-text a{
    text-align: center;
    display: block;
    width: 50%;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px;
    margin: auto;
  }

  .parralax-text a:hover::before{
    filter: blur(0);
  }


  .novi-modeli .novi-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.novi-modeli .card {
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.novi-modeli .card img {
    width: 100%;
    height: auto;
}

.novi-modeli .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 3px;
}




  /*FOOTER*/

  footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
  }

.footer-info ul li{
  font-size: .8em;
  padding: 5px 0;
}

.footer-info ul li a{
  color: white;
}

  .footer-logo{
    flex-basis: 20%;
    text-align: justify;
  }

  .footer-logo img{
    max-width: 50%;
    display: block;
    margin: auto;
  }

  .footer-info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 75%;
    padding: 50px;
  }

  .back-to-top{
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 1.5em;
    -webkit-text-stroke: 1px white;
    cursor: pointer;
    display: none;
    color: #939d67;
  }





  .prava{
    
    background-color:rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px 0;
    border-top: 1px solid white;
  }

  .prava p{
    text-align: center;
  }

  .prava a{
    color: #939d67;
  }


  /*O NAMA*/
.parralax-onama{
  background: url('../img/eyes.jpg');
  background-attachment: fixed;
  background-position: bottom;
  height: 60vh;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.parralax-onama h2{
  position: absolute;
  bottom: 5%;
  right: 5%;
  font-size: 3em;
  color: white;
  font-weight: 900;
}
  .onama{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 50px auto;
    border-bottom: 3px solid #939d67;
    padding: 30px 0;
  }

  .onama-img{
    flex-basis: 20%;
    margin: auto;
  }

  .onama-img img{
    max-width: 100%;
  }

  .onama-text{
    flex-basis: 45%;
    margin: auto;
    text-align: justify;
  }

  .onama-text h2{
    font-size: 2em;
    font-weight: 600;
    color: #939d67;
  }

.team{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 50px auto;
  position: relative;
}

.team-section{
  flex-basis: 30%;
  margin: auto;
  position: relative;
}



.gostujuci-section{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 50px auto;
}

.gostujuci-single-text{
  flex-basis: 30%;
}

.gostujuci-single-info{
  flex-basis: 60%;
}

.gostujuci-single-info img{
  max-width: 30%;
}






.team-section h2, .team-section h3, .team-section h4, .gostujuci-single-info h3, .gostujuci-single-text h2{
  text-align: center;
  font-weight: 300;
}
.team-section img{
  max-width: 100%;
}

.tim h2{
  margin: auto;
  font-size: 2.5em;
  font-weight: 500;
  padding: 30px;
  color: #333;
  background-color: rgba(250, 250, 250, 0.9);
  width: 100%;
  display: block;
 
  
}

.tim-fluid{
  background: url('../img/naocalemix.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  height: 500px;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}






/*USLUGE*/
.usluge-top{
  background: url('../img/momanddaughter.jpg');
  background-size: 100%;
  height: 500px;
  background-attachment: fixed;
  position: relative;
  background-repeat: no-repeat;
  background-position: bottom;
}

.usluge-top h2{
  display: block;
  color: #333;
  position: absolute;
  bottom: 2%;
  right: 2%;
  font-size: 3.5em;
  font-weight: 900;

}

.usluge-gore{
  margin: 50px auto;
}
.usluge-gore p{
  text-align: center;
  border-bottom: 5px solid #939d67;
  padding-bottom: 30px;
}

.usluge-gore img{
  max-width: 200px;
  display: block;
  margin: auto;
}

.usluge{
  display: flex;
  flex-direction: row;
  margin-top: 50px;
}


.ordinacija img{
  max-width: 200px;
}


.usluge-content-single h2{
  margin: 7px 0;
  font-weight: 300;
  text-align: center;
}

.usluge-content-single{
  flex-basis: 18%;
  text-align: justify;
  margin-bottom: 10px;
  margin: 20px;
}

.usluge-content-single img{
  width: 100%;
}




.kredit{
  background-color: #01a4db;
  background-size: 100%;
  height: 350px;
  margin: 50px auto;
  display: flex;
  flex-direction: row;

}

.kredit-slika{
  flex-basis: 50%;
  margin: auto;
}
.kredit-slika img{
  max-width: 50%;
  margin: auto;
  display: block;
}

.kredit-text{
  flex-basis: 50%;
  margin: auto;
  text-align: center;
}

.kredit-text h2{
  font-size: 4em;
  font-weight: 900;
  color: white;
}

.kredit-text p{
  text-align: center;
  color: white;
 }

.ordinacija{
  margin: 50px auto;
}
.ordinacija h2{
  text-align: center;
  margin: 30px auto;
  font-weight: 300;
}



.ordinacija a img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .5s;
  margin:5px;
}

.ordinacija a img:hover{
  transform: scale(1.1);
  transition: .7s;
}


/*PROIZVODI*/

.proizvodi-naslovna{
  background: url('../img/optika.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 600px;
  background-position: bottom;
}

.proizvodi{
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  border-bottom: 2px solid #ef7a34;
}
.proizvodi-side{
  display: flex;
  flex-direction: column;
  flex-basis: 20%;
  margin-right: 30px;
}

.proizvodi-side h2{
  text-align: center;
  font-weight: 300;

}

.proizvodi-side img{
  max-width: 100%;
}

.proizvodi-content{
  flex-basis: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

.proizvodi-content-single{
  flex-basis: 31%;
  margin-bottom: 10px;
}

.proizvodi-content-single h3{
  font-weight: 300;
  text-align: center;
}



.proizvodi-content-single img{
  max-width: 100%;
  transition: .5s;
}




.proizvodi-content-single h3, .proizvodi-content-single p{
  padding: 5px;
}

.modeli-naslov{
  text-align: center;
  margin-top: 50px;
  font-weight: 300;
}

.modeli{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
}

.model-single{
  flex-basis: 20%;
  margin-bottom: 50px;
}

.model-single h3{
  font-weight: 300;
  font-size: .9em;
}

.model-single img{
  max-width: 100%;
}

/*KONTAKT*/

#forma{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 50px 0;
  background: url('../img/contactbg.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  background-attachment: fixed;
  
}

.contact-info{
  flex-basis: 40%;
  list-style: none;
  padding: 20px;
  margin: auto;
  border-right: 1px solid black;
  background-color: rgba(250, 250, 250, 0.9);
}

.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: 1px solid #939d67;
  border-radius: 10px;
  z-index: 500;
}

textarea{
  width: 100%;
  border: 1px solid #939d67;
  margin: 10px 0;
  border-radius: 10px;
  text-align: center;
}

.posalji{
  background-color: #939d67;
  color: white;
  cursor: pointer; 
  transition: .7s;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2em;
  width: 100%;
  border-radius: 5px;
}

.posalji:hover{
  background-color: #f5b517;
  color: #0c76a8;
  transition: .7s;
}

.contact-info ul li{
  font-size: 1.2em;
  font-weight: 300;
  font-style: italic;
  margin: 5px 20px;
  color: #333;
}

.contact-info h3{
  margin: 20px 0;
  color: #333;
  font-weight: 500;
}


/*SHOP*/

.shop-naslovna, .diopt-naslovna{
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 600px;
  position: relative;
}

.shop-naslovna h2, .diopt-naslovna h2{
  position: absolute;
  bottom: 2%;
  left: 5%;
}

.shop-naslovna{
  background: url('../img/shop.jpg');
}

.diopt-naslovna{
  background: url('../img/diopt.jpg');
}

.shop{
  display: flex;
  flex-direction: row;

}

.shop-side{
  flex-basis: 20%;
  margin: 50px auto;
}

.shop-side span{
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: .9em;
  text-align: center;
}

.shop-side h3 {
  text-align: center;
  margin: 30px auto;
}

.shop-side p{
  margin-bottom: 50px;
}

.shop-side a{
  text-align: center;
  display: block;
  width: 100%;
  border: 1px solid #333;
  padding: 10px 20px;
  color: #333;
}

.shop-content{
  flex-basis: 75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}

.card{
  flex-basis: 30%;
  margin: 10px;
  overflow: hidden;
  transition: .8s;
}

.card:hover .card-header span{
  right: 0;
  transition: .7s;
}

.card-header img {
    width: 100%;
    height: 250px;          /* odredi jednu visinu */
    object-fit: cover;      /* popuni okvir, odreže višak */
    object-position: center;
    display: block;
    margin-bottom: 30px;
}

.card:hover img:first-of-type{
  transform: scale(1.1);
  transition: .7s;
}

.card-header{
  position: relative;
}

.card-header img{
  max-width: 100%;
}

.card-header span{
  position: absolute;
  background-color: red;
  color: white;
  padding: 10px;
  clip-path: polygon(100% 0%, 100% 51%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
  font-size: 1.3em;
  font-weight: 900;
  transition: .7s;
  right: -30%;
}

.card-footer h2{
  font-size: .9em;
  font-weight: 500;
}

.card-footer h4{
  font-weight: 300;
}

.card-footer h4 span{
  text-decoration: line-through;
  font-weight: 900;
  color: red;
}

.card-footer h3{
  color: #939d67;
}



/*LOGIN PAGE*/

.login-wrapper, .register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    flex-direction: column;
}

.login-wrapper img, .register-wrapper img {
    max-width: 250px;
    margin: 70px auto;
}
.login-box {
    width: 320px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.btn {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    background: #1e8449;
}



/*ADMIN*/

.admin-wrapper {
    display: flex;
    min-height: 80vh;
    background: #f5f5f5;
    padding: 20px;
    gap:20px;
}

.sidebar {
    width: 220px;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.sidebar h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar img{
    max-width: 100%;
    display: block;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}
.sidebar ul li ul{
    margin-top: 10px;
    margin-left: 15px;
}

.content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

form{
  width: 60%;
}

#social ul li{
    display: inline;
    line-height: 30px;
    margin-left: 20px;
    font-weight: 200;
}


/* Wrapper */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
}

/* Tabela */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 15px;
    background: #fff;
}

/* Header */
.admin-table thead {
    background-color: #f1f1f1;
}
.admin-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

/* Redovi */
.admin-table td {
    padding: 12px 16px;
    color: #444;
    border-bottom: 1px solid #eaeaea;
}

/* Zebra efekt */
.admin-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Hover */
.admin-table tbody tr:hover {
    background-color: #f0f4f8;
    transition: background 0.2s ease;
}

/* Dugmad */
.admin-table td a.btn-edit {
    background-color: #4a90e2;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    margin-right: 4px;
}
.admin-table td a.btn-edit:hover { background-color: #357abd; }

.admin-table td a.btn-delete {
    background-color: #e74c3c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    margin-right: 4px;
}
.admin-table td a.btn-delete:hover { background-color: #c0392b; }

.admin-table td a.btn-publish {
    background-color: #27ae60;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}

.btn-unpublish {
    background-color: #f39c12;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}
.admin-table td a.btn-publish:hover { background-color: #1e8449; }

/* Slika u tabeli */
.admin-table td img {
    border-radius: 4px;
}

.sidebar .active{
  background-color: rgba(21, 208, 68, 0.9);
  padding: 5px 10px;
  border-radius: 5px;

}


/*PAGINATION*/

.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
}

.pagination a.active {
    font-weight: bold;
    background-color: #f0f0f0;
    border-color: #888;
}


.shop-side {
    background: #f7f7f7;
    padding: 20px;
}

.filter-box {
    margin-bottom: 20px;
}

.filter-box label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.price-inputs {
    display: flex;
    gap: 10px;
    width: 100%;
}

.price-inputs input,
.shop-side select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
}

.btn-filter {
    width: 100%;
    padding: 10px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
}








@media only screen and (max-width: 767px){
p{
  padding: 10px;
}
  .logo img {
    margin-left: 10px;
  }
  .slide-text{
    left: 2%;
    width: 95%;
    padding: 7px 2px;
    bottom: 5%;
    background-color: rgba(0, 0, 0, 0.7);
    
  }

  .slide-text h1{
    font-size: 1.7em;
    margin-bottom: 0;
    text-align: center;
  }

  .slide-text p{
    font-size: 1.1em;
  }

  .social{
    display: none;
    
  }

  .menu-toggle{
    display:flex;
    right: 20px;
    top: -10px;
    z-index: 9999;
    transition: .7s;
  }

  .menu{
    position: fixed;
    background-color: rgba(0, 0, 0, 0.9);
    height: 100vh;
    width: 100%;
    z-index: 10000;
    text-align: center;
    padding-top: 50px;
    left: -100%;
    transition: .7s;
  }

  .menu ul{
    flex-direction: column;
    height: 80%;
  }


  .menu li a{
    color: white;
  }

  .toggleNavi{
    left: 0;
    transition: .7s;
  }

  .menu a{
    color: white;
  }

  .menu i{
    color: #ef7a34;
  }

 

  .main-offer{
    flex-direction: column;
    margin: 10px auto;
  }

  .main-offer-single img{
    margin: 5px auto;
  }



  .parralax{
    background-size: cover;
    background-position: top;
  }

  .parralax-text{
    left: 3%;
    font-size: 1em;
    padding: 16px;
    top: 30%;
    width: 100%;
    text-align: center;
  }

  .parralax-text h2{
    margin-bottom: 30px;
  }

  .about-main{
    flex-direction: column;
    width: 100%;
  }

  .about-main-text{
    padding: 10px;
    text-align: center;
  }

  .about-main-img{
    flex-basis: 100%;
  }

  .about-main-img img{
    margin: 0;
    max-width: 100%;
  }

  .gostujuci-section{
    flex-direction: column;
  }

  .gostujuci-single-info img{
    max-width: 100%;
  }

  footer{
    flex-direction: column;
    padding: 0;
  }

  .footer-info{
    flex-direction: column;
    width: 100%;
    padding: 5px;
  }

  .footer-info ul{
    margin: 15px 0;
    text-align: center;
  }

  .call{
    font-size: 2em;
    left:10px ;
  }

  /*O NAMA*/

  .parralax-onama{
    background-size: cover;
    background-position: center;
    height: 550px;
  }

  .parralax-onama h2{
    bottom: 5%;
    font-weight: 500;
  }

  .onama{
    flex-direction: column;
  }

  .team{
    flex-direction: column;
  }

  .onama-img{
    flex-basis: 100%;
  }

  .onama-img img{
    max-width: 100%;
  }

  .tim-fluid{
    background-size: cover;
  }

  .tim{
    padding-top: 0;
    width: 95%;
  }

  .tim h2{
    font-size: 2.4em;
    width: 90%;
  }
  .brojke{
    flex-direction: column;
    height: auto;
    margin: 20px auto;
  }

  .brojke-naslov h2{
    font-size: 2.9em;
  }

  .brojke-content{
    padding: 20px;
  }

  /*PROIZVODI*/

  .proizvodi{
    flex-direction: column;
    margin-top: 100px;
  }
  .proizvodi-content{
    flex-basis: 100%;
  }
  .proizvodi-content-single{
    flex-basis: 100%;
    margin-right: 0;
    margin-top: 20px;
  }


  .proizvodi-side{
    margin-right: 0;
  }

  .proizvodi-side img{
    display: none;
  }

  .usluge-top{
    background-size: cover;
    background-position: center;
    height: 350px;
  }

  .usluge-top h2{
    font-size: 1.6em;
    width: 98%;
    font-weight: 900;
    text-align: center;
  }

  .usluge{
    flex-direction: column;
    margin-top: 20px;
  }

  .ordinacija img{
    max-width: 100%;
  }

  .container{
    width: 100%;
  }

  .usluge-content{
    flex-basis: 100%;
  }

  .usluge-content-single{
    flex-basis: 100%;
  }

  .usluge-content-single h2{
    text-align: center;
  }

  .kredit{
    flex-direction: column;
    height: auto;
    margin: 0;
  }
  .kredit-slika{
    flex-basis: 100%;
  }

  .kredit-slika img{
    max-width: 100%;
  }

 .kredit-text{
  padding-bottom: 50px;
 }



 .modeli{
  flex-direction: column;
 }


 /*KONTAKT*/

 #forma{
  flex-direction: column;
  padding: 20px 0;
 }

 .forma{
  padding: 10px;
  margin: 0;
 }

 iframe{
  height: 300px;
 }

 .shop-naslovna, .diopt-naslovna{
  background-position: center;
  height: 400px;
}

.shop-side span{
  text-align: center;
  font-size: 1.1em;
  display: block;

}

.shop{
  flex-direction: column;
}

.card{
  flex-basis: 100%;
  text-align: center;
  border-bottom: 1px solid #333;
}

.shop-side{
  margin: 10px auto;
}

.shop-side h3{
  margin: 10px auto;
}


}










