/*Default Settings */
body{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Hind', sans-serif;
}

@font-face {
   font-family: Shoguns;
   src: url(../fonts/Shoguns.ttf);
}
.container-fluid{
    margin: 0px;
    padding: 0px;
}

.row{
    padding: 0px;
    margin: 0px;
}

.clear{
    padding: 0px;
    margin: 0px;
}
/*End Defaut Settings*/

.inner-page-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    z-index: 1;
    transition: padding 0.3s ease, background-color 0.3s ease;
}
.inner-page-menu.sticky-menu {
    padding: 5px 20px;
    background-color: rgba(255, 255, 255 , 0.95);
    -webkit-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    -moz-box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
    box-shadow: rgba(0,0,0,.117647) 0 1px 3px;
}

/*Responsive*/
.gal {    
    column-count: 3;
}   
.gal img { 
    width: 100%; 
    padding: 7px 0;
}

@media screen and (max-width: 479px) {        
    .gal {
        column-count: 1;
    }
}
.logo-inner {
    margin-left: auto;
}
.logo-inner img {
    max-width: 140px;
    transition: max-width 0.3s ease;
}
.inner-page-menu.sticky-menu .logo-inner img {
    max-width: 90px;
}
.share-button {
    font-size: 50px;
    margin-right: 20px;
    cursor: pointer;
    transition: color 0.6s ease;
}
.share-button:hover,
.share-button.active {
    color: #ce2323;
}

/*End Responsive*/
 
body{
    background-image: url(../img/pozadina/pozadina_5.jpg);
    background-size: 100%;
}

#wrapper h2{
    text-align: center;
    font-size: 50px;
    font-family: Shoguns;
    color: #000;
    margin-top: 120px;
    margin-bottom: 50px;
}

#wrapper .img-box{
    transition:all 0.6s;
}

#wrapper .img-box:hover{
    opacity: 0.7;
    transform: scale(1.02)
}

#wrapper p{
    font-size: 18px;
    text-align: center;
    margin-bottom: 100px;
    color: #000;
    font-weight: bold;
}

.info {
    font-size: 30px;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 0 10px 10px 0;
    -webkit-box-shadow: 2px 0px 18px 0px rgba(163,163,163,1);
    -moz-box-shadow: 2px 0px 18px 0px rgba(163,163,163,1);
    box-shadow: 2px 0px 18px 0px rgba(163,163,163,1);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.info.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.info ul {
    padding: 0;
    margin: 0;
}

.info ul li{
    list-style-type: none;
     margin: 10px 0 10px 0;
}

.info ul li a{
    color:#000;
    transition:all 0.5s;
}

.info ul li:hover a{
   color: #ce2323;
}

/*Arrow Up */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-decoration: none;
    color: #000000;
    font-size: 10px;
    padding: 0;
    display: none;
    border-radius: 3px;
    font-family: "Times New Roman", Georgia, serif;
}

 span.glyphicon-circle-arrow-up{
    font-size: 34px;
    transition:1s all;
}

span.glyphicon-circle-arrow-up:hover{
    color: #ce2323;
    transform:scale(1.3);
}

.back-home{
    font-family: Shoguns;
    font-size: 34px;
    color: #000;
    transition:all 0.6s;
}

a.back-home:hover{
    text-decoration: none;
    color:  #ce2323;
}

@media screen and (max-width: 767px) {
    .inner-page-menu {
        padding: 10px 15px;
    }
    .inner-page-menu.sticky-menu {
        padding: 5px 15px;
    }
    .logo-inner img {
        max-width: 115px;
    }
    .back-home {
        font-size: 30px;
    }
    #wrapper h2 {
        margin-top: 150px;
    }
}

@media screen and (max-width: 359px) {
    .share-button {
        font-size: 44px;
        margin-right: 15px;
    }
    .back-home {
        font-size: 28px;
    }
    .logo-inner img {
        max-width: 100px;
    }
}