/*Guest navbar style*/
.guest-navbar{
    background-color: #026DB8;
}
.nav-item{
    color: #FFF!important;
    font-size: 17px;
    border-right: 1px solid #028BC2;
}
.nav-link{
    color: #fff!important;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
}
/*Header*/
.header{
    background-image: url('../images/sistems/header_bg_default.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 170px;
    display: flex;
}
.bg-header{
    position: relative;
    bottom: -80px;
    z-index: -1;
}
.navbar-toggler-icon {
    background-image: url(
"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E")!important;
}
.img-brand{
    width: 300px;
}
.header >div:first-child{
    width: 50%;
}
.header > div:last-child{
    width: 50%;
}
.header-logo{
    display: flex;
    align-items: center;
}
.header-details{
    text-align: center;
    padding-top: 80px;
}
.header-details > img{
    max-width: 100%;
    width: 49px;
}
.nr-phone{
    font-size: 17px;
    font-weight: bold;
    font-style: italic;
    color: #ff0ff0;
}
/*Content guest*/
body{
    background-image: url('../images/sistems/body_bg_default.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
}
.bg-guest{
    background-color: rgba(255, 255, 255, 0.703);
}
.pen-and-detalii .list-group-item{
    font-size: 16px;
    color: #222222;
    font-family: arial, sans-serif;
    text-align: justify;
    text-transform: uppercase;
    font-weight: 600;
}
footer{
    background-image: url('../images/sistems/footer_bg_default.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.active{
    background-color: #FFAB25;
}
.nav-link:hover{
    background-color: #FFAB25;
    transition: 0.9s;
}
.text-yellow{
    color: #FFAB25;
    text-decoration: none;
}
.f-despre p, ul > li{
    color: #222222;
    font-family: arial, sans-serif;
    font-size: 16pt;
    text-align: justify;
}
nav{
    position: sticky;
}

/*Galerie*/
.gallery{
    display: flex;
    flex-wrap: wrap;
}
.gallery > a{
    width: calc(25% - 8px);
    margin: 4px;
    flex: 1 1 calc(25% - 8px);
    min-width: 240px;
}
.gallery > a > img {
    height: 200px;
    object-fit: cover;
}
.gallery > a > img:hover{
    border: 1px solid #028BC2;
    opacity: 0.5;
    transition: 0.6s;
}
#loading {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background-color: #fff;
    z-index: 99;
  }
/*Responsive section 992 px*/
@media only screen and (max-width: 992px) {
    body{
        min-width: 390px;
    }
    .img-brand{
        width: 150px;
    }
    .header-details{
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .pen-and-detalii .list-group-item{
        text-align: left;
        font-size: 12px;
    }
    .pen-and-detalii > h2{
        font-size: 18px;
    }
    .pen-and-detalii > h4, .f-despre > h4{
        font-size: 14px;
    }
    .gallery{
        flex-direction: column!important;
    }
    .gallery > a {
        width: 100%!important;
    }
    .gallery > a > img{
        height: auto!important;
        max-height: 350px;
    }
    .f-despre > p, ul > li{
        font-size: 12pt;
        text-align: left;
    }
    .nav-item{
        font-size: 14px;
    }
    .nav-link > img{
        width: 40px;
        margin: 0px 5px;
    }
}