/* --------------------------------------
        catalogue.php // HEADER
-------------------------------------- */
#header.catalog{
    /* background: #213A25 url(../images/img_header_catalogue.png) no-repeat; */
    background: url(../images/img_header_catalogue.png) no-repeat;
    background-size: cover;
}

#header.catalog h1{
    color: #FFF;
}

#header.catalog .breadcrumb:last-child,
#header.catalog .breadcrumb:last-child a{
    /* color: #FFF; */
}

#header.catalog .breadcrumb:last-child a:hover{
    color: #23a077;
}


/* --------------------------------------
        catalogue.php // SHELF
-------------------------------------- */
.shelf .row{
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: #bebebe 1px solid;
}

.shelf .col-lg-3{
    margin-bottom: 4rem;
}

.shelf .catalogCover{
    width: 100%;
    min-height: 220px;
    margin: 0 auto;
    /* border: #bebebe 1px solid; */
    padding: 0 2rem;
    cursor: pointer;
}

.shelf .catalogCover img{
    width: 100%;
    margin-bottom: 1rem;
    transition: all 0.5s ease-in-out;
}

.shelf .catalogCover span.name{
    display: block;
    font-weight: bolder;
    color: #016119;
    transition: all 0.5s ease-in-out;
    word-break: break-all;
}

.shelf .catalogCover:hover img{
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.shelf .catalogCover:hover span.name{
    text-decoration: underline;
}


/* --------------------------------------
        catalogue.php // Main-block
-------------------------------------- */
.main-block{
    background-image: url('../images/img_bg_catalogue1.png'),url('../images/img_bg_catalogue2.png');
    background-position: right bottom -100px, left top -100px;
    background-repeat: no-repeat;
}

@media only screen and (max-width: 960px) {
    .main-block{
        background-image: url('../images/img_bg_catalogue1.png'),url('../images/img_bg_catalogue2.png');
        background-position: right bottom -600px, left top -300px;
        background-repeat: no-repeat;
    }
}