*{
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 200vh;
}
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 50px;
    box-shadow: 1px 1px 3px #ccc;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 3;
}
.nav .logo{
    width: 100px;
}
.nav .logo img{
    width: 100%;
}
.nav .linkovi ul{
    list-style-type: none;
}
.nav .linkovi ul li{
    float: left;
}
.nav .linkovi ul li a.basic{
    padding: 10px;
    border: 1px solid rgb(197, 197, 197);
    margin: 0 10px;
    text-decoration: none;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    font-weight: bolder;
    color: rgb(26, 26, 26);
    font-size: 17px;
    border-radius: 10px;
}
.nav .linkovi ul li a.basic:hover{
    background-color: #00337b;
    color: #ffffff;
    border: 1px solid #00337b;
}
.accent{
    padding: 10px 40px;
    border: 1px solid #00337b;
    margin: 0 10px;
    text-decoration: none;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
    font-weight: bolder;
    color: #ffffff;
    font-size: 17px;
    border-radius: 10px;
    background-color: #00337b;
}
.landing{
    width: 100%;
}
.landing>div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.landing .title{
    padding-top: 5%;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 2vw;
    color: rgb(27, 34, 77);
}
.izdvojeno{
    font-size: 6vw;
    color: rgb(204, 16, 16);
}
.landing .slika{
    width: 100%;
}
.landing .slika img{
    width: 70%;
}
.proizvodi{
    width: 100%;    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 0;
    background-color: #9bace2;
}
.proizvodi-unutar{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.proizvodi-unutar .item{
    width: 200px;
    height: 200px;
    position: relative;
    margin: 10px;
}
.proizvodi-unutar .item .slicica{
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 1px 1px 2px #747474;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.proizvodi-unutar .item .slicica img{
    height: 100%;
    border-radius: 20px;
    object-fit: cover;

}
.proizvodi-unutar .item .hidden{
    width: 200px;
    height: 220px;
    margin-top: 10px;
    border-radius: 10px;
    padding: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: none;
    position: absolute;
    top: -10px;
    background-color: white;
    box-shadow: 1px 1px 2px #ccc;
    z-index: 3;
    font-weight: bold;
    font-size: 18px;
    padding: 25px;
    text-align: center;
    color: #222222;
}
.proizvodi-unutar .item:hover .hidden{
    display: block;
}


.button a{
    background-color: #00337b;
    color: white;
    padding: 10px 40px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 20px;
}

.video{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.okvir{
    width: 80%;
    height: 80%;

}
.okvir video{
    border-radius: 50px;
    border: 10px solid rgb(204, 16, 16);
}
.footer{
    width: 100%;
    background-color: #e7e7e7;
    box-shadow: 2px -2px 4px #757575;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 5% 7%;
}

.footer .autorice{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0;
}
.footer .autorice .slika{
    flex: 100%;    
    height: 400px;
}
.footer .autorice .slika img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
}
.footer .autorice .tekst{
    padding: 45px 35px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgb(80, 80, 80);
    color: #222222;
}
.footer .autorice .tekst h1{
    padding-bottom: 20px;
}
.footer .kontakt{
    width: 100%;
    height: 80%;
    color: #222222;
}
.footer .kontakt h1{
    font-size: 50px;
    margin: 30px 0;
}
@media only screen and (max-width: 710px) {

    .footer{
        flex-direction: column;
    }
    .footer .autorice{
        flex-direction: column;
    }
    .nav{
        position: relative;
    }
  }
  @media only screen and (max-width: 650px) {

    .nav .linkovi ul li a{
        display: block;
        width: 100%;
        text-align: center;
    }
    .nav{
        position: relative;
    }

  }