
div.container {
    background: url("../../assets/img/background_big.jpg") bottom right no-repeat;

}

h3 {
    padding-bottom: 0px;
    margin-top: 5px;
    margin-bottom: 0px;

}

h4 {margin-bottom: 2px;}

.description p
{
    font-size: 12px;
}

/**THE SAME CSS IS USED IN ALL 3 DEMOS**/
/**gallery margins**/
ul.gallery{
    margin-left: 3vw;
    margin-right:3vw;
}

.zoom {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
    border: 0
}

.zoom:hover,
.zoom:active,
.zoom:focus {
    /**adjust scale to desired size,
    add browser prefixes**/
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    position:relative;
    z-index:100;
}



@media (max-width: 1280px) {

    div.container {
        background: url("../../assets/img/background2.jpg") bottom left no-repeat;

    }


}

@media (max-width: 480px) {

    div.container {
        background: url("../../assets/img/background_big.jpg") bottom left no-repeat;

    }


}
