.headerNovost{
    width: 100%;
    min-height: 40vh;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.headerNovostNaslovna{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: grayscale(100%) brightness(80%);
}
.headerNovost > .h1{
    width: 70%;
    padding-bottom: 20px;
    text-shadow: 0px 0px 12px rgba(0, 0, 0, 1),0px 0px 7px rgba(0, 0, 0, 1),0px 1px 16px rgba(0, 0, 0, 1);
    font-weight: 500;
    z-index: 2;
}
.novostDesc{
    width: 70%;
    max-width: 2400px;
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    font-weight: 500;
}
.novostDesc h1{
    width: 100%;
    padding-bottom: 20px;
    font-weight: 500;
    color: #000;
}
.novostDesc h2{
    font-size: 2rem;
    padding-left: 3px;
}
.novostDesc h4{
    margin: 20px 0;
}
.novostDesc p{
    margin: 25px 5px;
    font-size: 1.2rem;
}
.novostDesc a{
    color: #f93839;
}
.novostDesc ol{
    margin-left: 30px;
}
.novostDesc ol li{
   padding: 5px 0;
   font-size: 1.2rem;
}
.novostDesc ul{
    margin-left: 30px;
}
.novostDesc ul li{
   padding: 5px 0;
   font-size: 1.2rem;
}
.novostDesc img{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    margin: 20px auto;
}
.novostDesc video{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    margin: 20px auto;
}
.novostDesc iframe{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    margin: 20px auto;
}
.smerTitle{
    text-transform: capitalize;
}
/* Large devices (laptops/desktops, 992px) */
@media only screen and (max-width: 992px) {
    .headerNovost{
        min-height: 20vh;
    }
    .headerNovost > .h1{
        width: 90%;
    }
    .novostDesc{
        width: 90%;
    }
}
