/* FONTS */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');


/* VARIABLES */

:root{
    --main-blue:#134a95;
    --text-white:#ffffff;
    --text-black:#000000;
    --text-gray: #5e5e5e;
    --light-gray: #f5f5f5;
    --darker-gray: #e1e1e1;
    --blue-light:#5980b4;
    --blue-middle: #3865a3;
    --blue-dark:#2a5c9f;
    --blue-darker:#134a95;
    --blue-darkest:#114286;
    --blue-grad-dark:#20549b;
    --blue-grad-light:#4c76ae;
}

/* GLOBAL CSS */

html{
    font-size: 62.5%;
}
body{
    font-family: 'Open Sans', sans-serif;
}

.container_, .row_{
    margin: 0;
}


/* *::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

a{
    cursor: pointer;
}

/* LOADER */

#loader_{
    position: fixed;
    width: 100%;
    height: 100%;
    color: transparent;
    top: 0;
    left: 0;
    z-index: 99999999999;
    border-radius: 0;
    background: #dbdbdb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  /* margin: 60px auto; */
  font-size: 5px;
  position: relative;
  /* text-indent: -9999em; */
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #0181c0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* HEADER */
#header-holder{
    box-shadow: 0 0 10px var(--darker-gray);
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
}

#header{
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* .logo{
    background-color: var(--main-blue);
    max-width: 320px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* UKLONITI */
.logo-image-rectangle{
    width: 6rem;
    height: 6rem;
    border: 0.4rem solid #ffffff;
    margin: 2rem 2rem 2rem 0;
}
/* UKLONITI */

.logo-text{
    font-size: 2rem;
    color: var(--white);
    font-weight: 600;
}

.header-aside{
    flex-grow: 1;
}

.header-aside-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--darker-gray);
}

.header-aside-top-left>div{
    height: 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-aside-top>div.header-aside-top-left>div>div{
    height: 100%;
    padding: 0 2rem;
    border-right: 1px solid var(--darker-gray);
    display: flex;
    align-items: center;
}

.header-aside-top>div.header-aside-top-left>div>div>a{
    text-decoration: none;
}

.header-aside-top>div.header-aside-top-left>div>a>span,
.header-aside-top>div.header-aside-top-left>div>div>a>span{
    font-size: 1.6rem;
    margin: 0.5rem;
    color: #000;
}

.header-aside-top>div.header-aside-top-left>div>a>span>i,
.header-aside-top>div.header-aside-top-left>div>div>a>span>i{
    color: var(--main-blue);
}

.header-aside-top-right{
    height: 5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header-aside-top>div.header-aside-top-right>div{
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.header-aside-top>div.header-aside-top-right>div>a>span{
    font-size: 1.6rem;
    margin: 0.5rem;
    color: #000;
}

.header-aside-top>div.header-aside-top-right>div>a:hover>span{
    color: var(--main-blue);
}

.header-aside-bottom{
    height: 8rem;
    background: var(--white);
}

#navigation{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.navbar{
    height:100%;
    background-color: #fff!important;
    padding-bottom: 0;
}

.navbar li a{
    padding: 0.5rem 2rem;
}

.navbar li li a.dropdown-toggle{
    padding-right: 3rem;
}

#navbarNavDropdown{
    height:100%;
    max-height: 100%;
    -webkit-transition: max-height 0.5s ease-in-out;
    -moz-transition: max-height 0.5s ease-in-out;
    -o-transition: max-height 0.5s ease-in-out;
    -ms-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
}

.navbar-nav{
    height:100%;
}

.navbar-nav *{
    font-size: 1.5rem;
}

#navigation>div,
.navbar-nav>li{
    margin-right: 7.5rem;
    height: 100%;
    vertical-align: middle;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.dropdown-item:hover {
    color: #fff;
    background-color: var(--main-blue);
}

.dropdown-item:active, .dropdown-item:focus {
    color: #000;
    background-color: #fff;
}

#navigation>div.active-menu-item,
.navbar-nav>li.active-menu-item{
    border-bottom: 0.4rem solid var(--main-blue);
    height: 100%;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

#navigation>.menu-item-simple>a,
.navbar-nav>li>a{
    font-size: 1.6rem;
    color: var(---text-black);
    font-weight: 500;
    cursor: pointer;
}

#navigation>.menu-item-simple>a:hover{
    color: var(--main-blue);
    text-decoration: none;
}

#navigation>.menu-item-search,
.navbar-nav + .menu-item-search{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    font-size: 2rem;
    margin-right: 0;
    border-left: 0.1rem solid var(--darker-gray);
}

#navigation>.menu-item-search i{
    color: var(--main-blue);
}

#navigation>.menu-item-mobile-menu{
    background-color: var(--main-blue);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    font-size: 3rem;
    margin-right: 0;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--main-blue);
}

#search-bar{
    background-color: var(--light-gray);
    border-top: 1px solid var(--darker-gray);
    margin-top:-52px;
    transition: margin-top 0.3s;
}

#search-field{
    height:51px;
    width:100%;
}

#search-field > form{
    width: 100%;
}

#search-field > form > input{
    font-size: 1.6rem;
    border:none;
    outline:none;
    padding: 1rem;
    flex-grow:1;
    margin-right:2rem;
    background-color: var(--light-gray);
}

#search-field > form > button{
    margin:0;
    font-size: 16px;
    border-color: var(--main-blue); 
    color: white; 
    background: var(--main-blue); 
    padding: 0.9rem 1.5rem;
}

@media screen and (min-width: 1024px) {
    #navigation>.menu-item-mobile-menu{
        display: none;
    }  
}

#navigation>.menu-item-mobile-menu i{
    color: var(--text-white);
}

/* SLIDER */

#slider{
    width: 100%;
    height: 77rem;
    /* background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2)), url(../images/slider1.jpg) repeat; */
    /* background-size: cover; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-top: 13rem;
    background: #000;
}

.slider-left,
.slider-middle,
.slider-right{
    display: flex;
}

.slider-left,
.slider-right{
    width: 180px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-left>span,
.slider-right>span{
    border-radius: 100%;
    width: 7rem;
    height: 7rem;
    background-color: rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: var(--text-white);
    cursor: pointer;
}

.slider-right>span:hover{
    box-shadow: 1px 0px 2px #000000;
}

.slider-left>span:hover{
    box-shadow: -1px 0px 2px #000000;
}

.slider-middle{
    flex-grow: 1;
    height: 100%;
    max-width: 120rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slider-middle-small-title{
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 500;
    filter: drop-shadow(1px 1px 3px #6f6f6f);

}
.slider-middle-large-title{
    color: var(--text-white);
    font-size: 9rem;
    font-weight: 700;
    filter: drop-shadow(1px 1px 3px #6f6f6f);

}
.slider-middle-description-text{
    color: var(--text-white);
    font-size: 1.8rem;
    filter: drop-shadow(1px 1px 3px #6f6f6f);
    font-weight: 200;
    max-width: 60rem;

}
.slider-middle-read-more{
    color: var(--text-white);
    font-size: 2rem;
    filter: drop-shadow(1px 1px 3px #6f6f6f);
    border: 2px solid #ffffff;
    padding: 1rem 2rem;
    margin: 3rem 0;
    cursor: pointer;
}

.slider-middle-read-more:hover{
    box-shadow: 1px 0px 2px #6f6f6f;
}

.w-100{
    max-height: 77rem;
    width: 100%;
    object-fit: cover;
}

.carousel-item > img{
    opacity: 0.35;
}

.carousel-caption {
    position: absolute;
    z-index: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon
 {
    background-color: rgba(0,0,0,0.75);
    padding: 9px;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    border-radius: 100%;
}

/* SLIDER SMALL */

#slider-small{
    width: 100%;
    height: 40rem;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), url(../images/slider1.jpg) center repeat;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-top: 13rem;
}

#slider-small>.slider-middle {
    flex-grow: 1;
    height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#slider-small .slider-middle-large-title {
    font-size: 5.4rem;
    font-weight: 700;
    filter: drop-shadow(1px 1px 3px #6f6f6f);
}

/* BODY */

#smjerovi-container{
    margin: -6rem auto 6rem;
}

#smjerovi{
    max-width: 120rem;
    width: 100%;
    /* height: 20rem; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: -6rem auto 6rem;
    position: relative;
}

.smjer-single-darkest,
.smjer-single-darker, 
.smjer-single-dark,
.smjer-single-light{
    /* width: 25%; */
    display: flex;
    color: var(--text-white);
    font-size: 1.8rem;
    align-items: flex-end;
    padding: 1.5rem 2rem!important;
    min-height: 25rem;
}

.smjer-single-darkest>p,
.smjer-single-darker>p,
.smjer-single-dark>p,
.smjer-single-light>p{
    font-weight: 200;
}

.smjer-single-darkest>p>span,
.smjer-single-darker>p>span, 
.smjer-single-dark>p>span,
.smjer-single-light>p>span{
    font-weight: 500;
    font-size: 2.4rem;
}

.smjer-single-darkest{
    background-color: var(--blue-darkest);
}
.smjer-single-darker{
    background-color: var(--blue-darker);
}
.smjer-single-dark{
    background-color: var(--blue-dark);
}
.smjer-single-light{
    background-color: var(--blue-light);
}

#about{
    max-width: 120rem;
    width: 100%;
    margin: 10rem auto;
    display: flex;
    margin: 5rem 0!important;
}

.about-text{
    padding: 0 2rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 60%; */
}

.small-start-text{
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-gray);
}
.large-headline{
    font-size: 3.8rem;
    font-weight: 700;
}
.headline-bottom{
    width: 160px;
    height: 5px;
    background-color: var(--main-blue);
    margin: 1.5rem 0 3rem 0;
}
.about-main-text{
    font-size: 1.8rem;
    /* margin-right: 20%; */
    text-align: justify;
}

.about-image{
    width: 100%;
    max-width: 60rem;
}

.about-image>img{
    width: 100%;
}

#numbers-container{
    width: 100%;
    min-height: 56rem;
    background: linear-gradient(to right, var(--blue-grad-dark), var(--blue-grad-light)); 
}

#numbers{
    max-width: 120rem;
    width: 100%;
}

#numbers.row{
    align-items: center;
}

.numbers-inner{
    max-width: 120rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.increasing-number{
    /* width: 25%; */
    height: 30rem;
    border-radius: 5rem;
    background-color: rgba(255,255,255,0.1);
    margin: 0 1rem;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    line-height: 8rem;
}

.increasing-number>span{
    font-size: 8rem;
    font-weight: 700;
}

#news{
    width: 100%;
    max-width: 120rem;
    margin: 10rem auto;
    text-align: center;
}

.headline-bottom_{
    width: 160px;
    height: 5px;
    background-color: var(--main-blue);
    margin: 1.5rem auto 3rem;
}

#news>a{
    text-align: right;
    display: block;
    width: 100%;
    font-size: 1.6rem;
    padding: 1rem;
}

.news-section{
    display: flex;
    justify-content: center;
}

.article{
    padding: 1rem;
    flex-grow: 1;
}

.article>.article-image{
    height: 25rem;
    position: relative;
}

.article>.article-image>img{
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    object-fit: cover;
}

.article>.article-image>.article-date{
    position: absolute;
    bottom: 0rem;
    left: 2rem;
    padding: 1rem 2rem;
    background: var(--main-blue);
    color: var(--text-white);
    font-size: 1.6rem;
}

.article>.article-image>.article-date>span{
    font-size: 2.4rem;
}

.article-author{
    font-size: 1.4rem;
    display: flex;
    margin: 4rem 0 0;
    color: var(--text-gray);
}

.article-author>i{
    color: var(--main-blue);
    font-size: 1.6rem;
    margin: 0 0.5rem 0 0;
}

.article-author>p{
    margin-right: 2rem;
}

.article-text>h3{
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.article-text>p{
    color: var(--text-gray);
    font-size: 1.6rem;
    line-height: 2.8rem;
}

.article-text,
.article-button{
    text-align: left;
}

.article-button{
    text-align: center;
    border: 1px solid var(--main-blue);
    padding: 1rem 4rem;
    font-size: 2rem;
    width: auto;
    /*display: inline-block;*/
    max-width: 15rem;
    color: var(--main-blue);
    margin: 1rem auto;
    float: right;
}

#edukom{
    width: 100%;
    max-width: 120rem;
    min-height: 260px;
    /*background-image: url(../images/edukom-slika.png);*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    margin: 0 auto 5rem;
    /* padding: 3.5rem; */
    background-position: right;
    border-radius: 25px;
}

/* .edukom-logo>img{
    width: 180px;
} */

/* .edukom-text{
    font-size: 4.8rem;
    color: var(--text-white);
    /* max-width: 60%; 
    filter: drop-shadow(0px 0px 2px #6f6f6f);
} */

#edukom > div > a{
    display: block;
    text-align: center;
    padding: 7rem 0;
    box-shadow: 0px 0px 6px #ccc;
    border-radius: 1rem;
}

#edukom > div > a:hover{

    box-shadow: 0px 0px 6px var(--main-blue);
}

/* FOOTER */

#footer{
    background-color: var(--main-blue);
    color: var(--text-white);
    padding: 5rem 0 0 0;
}

.footer-container{
    max-width: 120rem;
    margin: 2rem auto;
    display: flex;
    justify-content: space-between;
}

.footer-logo{
    display: flex;
    align-items: center;
}

#footer-container > div{
    font-size: 1.6rem;
    line-height: 2.8rem;
}

#footer-container > div a{
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
}

#footer-container > div a:hover{
    opacity: 1;
}


#footer-container > div>div>i,
#footer-container > div>ul>li>a>i{
    font-size: 1.6rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
    width: 16px;
}

#footer-container > div>div>a>i.fa-facebook,
#footer-container > div>div>a>i.fa-instagram,
#footer-container > div>div>a>i.fa-twitter,
#footer-container > div>div>a>i.fa-youtube{
    font-size: 2.4rem;
    margin: 3rem 3rem 3rem 0;
    color: #fff;
    opacity: 0.75;
}

#footer-container > div>a:hover>i.fa-facebook,
#footer-container > div>a:hover>i.fa-instagram,
#footer-container > div>a:hover>i.fa-twitter,
#footer-container > div>a:hover>i.fa-youtube{
    opacity: 1;
}

.footer-address,
.footer-phone{
    display: flex;
}

.copyright{
    background-color: var(--blue-darkest);
    font-size: 1.6rem;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-container > div>h4{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

#footer-container > div>ul{
    list-style: none;
    padding: 0;
    line-height: 5rem;
}

.centered-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5rem 0;
}

.single-news-full-width{
    box-shadow: 1px 1px 13px #eee;
    border: 1px solid #eee;
    background-color: #f7f7f7;
    padding: 0.5rem;
    border-radius: 2px;
    margin-bottom: 2rem;
    display: flex;
}

.single-news-full-width>.single-news-image-part>img{
    width: 100%;
    max-width: 380px;
    height: 250px;
    margin-right: 1rem;
    object-fit: cover;
}

.single-news-text-part{
    font-size: 1.6rem;
    position: relative;
}

.single-news-text-headline{
    margin: 1rem 0;
}

.special-flex{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.special-flex>a{
    padding: 1rem 1.5rem;
    border: 1px solid #eee;
    margin: 1rem 0.5rem;
    color: var(--main-blue);;
    font-size: 1.6rem;
}

.special-flex>a:hover{
    text-decoration: none;
    font-weight: 700;
}
.special-flex>p{
    padding: 1rem 1.5rem;
    border: 1px solid #eee;
    margin: 1rem 0.5rem;
    background-color: var(--main-blue);
    color: #fff;
    font-size: 1.8rem;
}

.special-flex>span{
    margin: 2rem 1rem 0;
    font-size: 1.6rem;
}

/* KONTAKT */

.three-boxes{
    margin-top: 5rem;
}

.three-boxes > div > div > div{
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 1.6rem;
    text-align: center;
    margin: 5rem 0rem;
}

.three-boxes .contact-block{
    padding: 5rem;
    border: 2px solid #eee;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 20px #eee;
}

.three-boxes .contact-block i{
    font-size: 4.8rem;
    margin-bottom: 1rem;
    color: var(--main-blue);
}

.three-boxes .contact-block h5{
    font-size: 2.4rem;
}

.three-boxes .contact-block span{
    min-height: 50px;
}

.contact-form{
    text-align: center;
    font-size: 1.6rem;
}

.contact-form h3{
    font-size: 3.2rem;
    margin-top: 5rem;
}

.contact-form p{
    margin-bottom: 5rem;
}

.centered-divider{
    margin: 1.5rem auto 3rem;
}

.contact-form form{
    padding: 3rem 0;
}

.contact-form input,
.contact-form textarea{
    font-size: 1.6rem;
    padding: 2rem 1.5rem;
}

.contact-form input[name="submit"]{
    background-color: var(--main-blue);
    color: var(--text-white);
    padding: 1rem 3rem;
    box-shadow: 1px 1px 5px #ccc;
    margin-bottom: 5rem;
}

.contact-form input[name="submit"]:hover{
    color: var(--main-blue);
    background-color: white;
    border: 1px solid var(--main-blue);
}

.single-oglas{
    border: 1px solid #eee;
    padding: 5rem 3rem 2rem;
    text-align: center;
    box-shadow: 1px 1px 10px #eee;
    position: relative;
    background-image: url(../images/info.png);
    background-size: 125px;
    background-position: right -30px bottom -20px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.single-oglas p{
    font-size: 1.6rem;
}

.single-oglas p.small-text{
    font-size: 1.2rem;
}

.single-oglas a{
    font-size: 1.6rem;
}

.single-oglas .oglas-text{
    text-align: justify;
    padding-top: 1rem;
    font-size: 1.6rem;
}

.pin-oglasi-top{
    width: 30px;
    position: absolute;
    top: 0px;
    left: 53%;
    right: 50%;
    transform: translateX(-50%);
}

/* ZAPOSLENI */

.single-zaposleni{
    text-align: center;
    margin: 3rem 0;
}

.zaposleni-avatar{
    max-width: 80%;
    margin: 2rem auto 1rem;
    filter: drop-shadow(1px 1px 10px #eee);
}

.single-zaposleni p{
    font-size: 1.6rem;
}

.o-skoli-sve{
    margin: 5rem 0 0; 
}

.single-clanak{
    margin-bottom: 5rem;
}

.single-clanak h1{
    font-size: 3.6rem;
    margin: 2rem 0;
    text-align: center;
}

.single-clanak .headline-bottom{
    margin: 0 auto;
}

.single-clanak p{
    font-size: 1.6rem;
    text-align: justify;
}

.single-clanak p.autor-date{
    text-align: center;
    margin: 1rem 0 3rem;
    font-size: 1.4rem;
}

.single-clanak img{
    width: 100%;
    margin: 2rem 0;
    box-shadow: 1px 1px 5px #ccc;
    border-radius: 5px;
}

.sub-menu-item-simple{
    list-style: none;
    margin: 0;
    padding: 0;
    position:absolute;
    left:0;
}

.sub-menu-item-simple > a > li {
    position: absolute;
    height: 0px;
    vertical-align: middle;
    font-size: 16px;
    background: #fff;
    width: 145px;
    padding-left:1rem;
    color:transparent;
    display: flex;
    align-items: center;

    /*Animation*/
    -webkit-transition: height 0.3s ease;
    -moz-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
    -ms-transition: height 0.3s ease;
    transition: height 0.3s ease;
}

ul.sub-menu-item-simple{
    filter: drop-shadow(0px 0px 2px #eee);
}

.menu-item-with-subitems:hover a li{
    height: 40px;
    color: #000;
    /*border-bottom:1px solid #eee;*/
}

.menu-item-with-subitems:hover a:hover li{
    background-color: var(--main-blue);
    color: #fff;
}

.singleAlbumFront{
    /*border-radius: 10px;*/
    /*border: 1px solid #ccc;*/
    margin: 50px 0 0;
    /*padding: 10px;*/
    text-align: center;
    cursor: pointer;
  }
  
  .singleAlbumFront:hover .albumImageOverlay{
    display: none;
  }
  
  .singleAlbum-imagePart{
    position: relative;
  }
  
  .singleAlbum-imagePart>img{
    object-fit: cover;
    width: 100%; 
    height: 100%;
    /*border-radius: 10px 10px 0 0;*/
    /* box-shadow: 0px 0px 5px #ccc; */
    opacity: 0.75;
  }

  .singleAlbumFront:hover .singleAlbum-imagePart>img{
    opacity: 1;
  }
  
   .singleAlbum-headlinePart > p{
      /*margin: 0;
      padding: 10px;
      background: #223a66;
      /* box-shadow: 0px 0px 5px #ccc; */
      /*color: #fff;
      text-transform: uppercase;*/
      font-size: 1.6rem;
  } 

div#lightboxed--content .lightboxed--frame .lightboxed--caption {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.galerija-sve{
    padding: 5rem 0 10rem;
}
  
.album-sve{
    padding: 5rem 0;
}

.album-sve > div > div >div >img{
    height: 240px;
    object-fit: cover;
}

.lightboxed--caption{
    font-size: 1.6rem;
}

.single-news-content{
    margin: 5rem 0 3rem;
}

.single-news-content p{
    font-size: 1.4rem;
}

.single-news-text{
    margin: 0 0 5rem 0;
}

/* .single-news-text img{
    width: 100%!important;
} */

.single-news-text p{
    font-size: 1.6rem;
    margin: 2rem 0;
}

.rezultati-pretrage{
    margin-bottom: 5rem;
}

a.btn.btn-main{
    background-color: var(--main-blue);
    color: var(--text-white);
    padding: 1rem 3rem;
    box-shadow: 1px 1px 5px #ccc;
    margin-bottom: 5rem;
    font-size: 1.6rem;
    margin: 1rem;
}

a.btn.btn-main2{
    background-color: var(--text-white);
    color: var(--main-blue);
    border: 1px solid var(--main-blue);
    padding: 1rem 3rem;
    box-shadow: 1px 1px 5px #ccc;
    margin-bottom: 5rem;
    font-size: 1.6rem;
    margin: 1rem;
}

h3.line-height-lg{
    line-height: 2;
    margin-bottom: 2rem;
}

.zaposleni-slika{
    object-fit: cover;
}

.color-main-var{
    color: var(--main-blue);
}


/* NEW CSS */

/* HEADER START */

#header{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.social-mobile{
    display: none;
}

.logo{
    background-color: var(--main-blue);
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navigation>div,
.navbar-nav>li{
    margin-right: 5rem;
}

.navbar-nav{
    justify-content: flex-end;
}

.header-mobile-menu{
    display: none!important;
}

@media screen and (max-width: 1199px){
    .header-aside-top-right > div{
        display: none!important;
    }
    nav.navbar{
        padding: 0;
        height: 100%;
        display: flex;
    }
    nav.navbar>div{
        display: flex!important;
        height: 0;
    }
    #navbarNavDropdown{
        max-height: 0;
        overflow-y: hidden;
        -webkit-transition: max-height 0.5s ease-in-out;
        -moz-transition: max-height 0.5s ease-in-out;
        -o-transition: max-height 0.5s ease-in-out;
        -ms-transition: max-height 0.5s ease-in-out;
        transition: max-height 0.5s ease-in-out;
    }
    .menu-item-search{
        display: none!important;
    }
    .social-mobile{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .social-mobile *{
        color: var(--main-blue);
        font-size: 1.6rem;
        padding: 0.5rem 0;
    }
    .header-aside-top{
        border-bottom: none;
    }
    .header-aside-top-left{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .header-aside-top-left > div > div{
        border-right:none!important;
    }
    .header-aside-top>div.header-aside-top-left>div.header-phone-mail{
        display: flex;
        justify-content: space-around;
        flex-grow: 1;
    }
    .header-aside-top>div.header-aside-top-left>div>div>a>span{
        font-size: 1.4rem;
    }
    .navbar-nav{
        justify-content: space-around;
    }
    #navigation>div, .navbar-nav>li {
        margin-right: 0rem;
    }
    .header-aside-bottom{
        height: auto;
    }
    /* .header-aside-top{
        flex-direction: column;
    } */
    .logo{
        height: auto;
    }
    .header-mobile-menu{
        display: flex!important;
        font-size: 2.6rem;
        background-color: var(--main-blue);
        color: #fff;
        width: 50px;
        justify-content: center!important;
    }
    /* .header-aside-bottom{
        display: none;
    } */

    .header-aside-top>div.header-aside-top-left>div>div{
        padding: 0;
    }

    #search-bar{
        display: none!important;
    }
}

/* HEADER END */

/* SLIDER START */

#slider {
    margin-top: 0rem;
    height: auto;
}
#slider-small{
    margin-top: 0rem;
    height: auto;
    min-height: 24rem;
}

/* SLIDER END */



@media screen and (max-width:991px){

    /* SLIDER START */

    .slider-middle-small-title{
        font-size: 2.8rem;
    }
    .slider-middle-large-title{
        font-size: 4.8rem;
    }
    .slider-middle-description-text{
        font-size: 1.8rem;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 35px;
        height: 35px;
        background-size: 12px;
    }

    /* SLIDER END */

    /* SMJEROVI START */

    #smjerovi > div{
        min-height: 10rem;
    }

    #smjerovi-container {
        margin: 0;
    }
    /* SMJEROVI END */

    /* O ŠKOLI START */

    #about > div > .about-text {
        display: flex;
        align-items: center;
    }

    #about > div > .about-text > p{
        text-align: center;
        margin-right: 0;
        margin-bottom: 2rem;
    }

    #about > div > .about-image {
        margin:0 auto;
    }

    .large-headline {
        font-size: 3.2rem;
        font-weight: 700;
        text-align: center;
    }

    .about-text {
        padding: 0;
    }

    /* O ŠKOLI END */

    /* NUMBERS START */

    #numbers.row{
        margin: 2rem 0;
    }

    #numbers.row>div{
        margin: 1rem 0;
    }

    .single-news-full-width{
        display: initial;
        text-align: center;
    }

    .article-button{
        float: none;
    }

    #slider-small .slider-middle-large-title {
        font-size: 3.6rem;
    }

    .centered-content {
        margin: 2rem 0;
    }

    #footer-container > div>div>a>i.fa-facebook, #footer-container > div>div>a>i.fa-instagram, #footer-container > div>div>a>i.fa-twitter, #footer-container > div>div>a>i.fa-youtube {
        margin: 2rem 2rem 2rem 2rem;
    }

    #navigation>div.active-menu-item, .navbar-nav>li.active-menu-item {
        border-bottom: none;
    }

    #news>a {
        text-align: center;
    }
}

@media screen and (max-width:767px){
    /* SLIDER START */

    .slider-middle-small-title{
        font-size: 1.6rem;
    }
    .slider-middle-large-title{
        font-size: 2.8rem;
    }
    .slider-middle-description-text{
        font-size: 1.3rem;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 35px;
        height: 35px;
        background-size: 12px;
    }

    /* SLIDER END */
}

/* FOOTER */

#footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer-container{
    max-width: 120rem;
    width: 100%;
    padding: 5rem 0 3rem;
    text-align: center;
}

#footer-container > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright{
    width: 100%;
}

.dropdown-submenu a::after {
    top: 1em!important;
}

/* GALERIJA FIX */

.singleAlbumFront{
    border: 1px solid #eee;
    padding: 1rem 1rem 0 1rem;
    margin-bottom: 2rem;
}

.singleAlbumFront img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.singleAlbum-headlinePart p{
    margin: 1rem 0;
    text-align: center;
    font-weight: bold;
    color: var(--main-blue);
}

.album-sve img {
    padding: 1rem;
    border: 1px solid #eee;
    margin-bottom: 4rem;
    object-fit: cover;
}

div#lightboxed--content .lightboxed--frame .lightboxed--caption {
    position: absolute;
    bottom: 0;
    left: 50%;
    padding: 1rem 2rem;
    background: #000;
    background: rgba(0,0,0,0.9);
    color: #fff!important;
    transform: translateX(-50%);
    right: unset;
}