/*.container-header {*/
    /*background-image: url(img-header.png);*/
    /*background-repeat: no-repeat;*/
    /*background-position: bottom;*/
    /*background-size: contain;*/
/*}*/
/*.container-carousel-last-news {*/
    /*background-image: url('banner/img8.jpg');*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: cover;*/
/*}*/

/*---------- photo Gallery ----------*/
.gallery {
    margin: 0 auto;
    padding: 5px;
}

.gallery .item-img {
    overflow: hidden;
    height: 40px;
    margin: 0 auto 25px;
}

.gallery .item-img img {
    transition: .1s transform;
    transform: translateZ(0); /* hack */
}

.gallery .item-img:hover {
    z-index: 1;
}

.gallery .item-img:hover img {
    transform: scale(1.7,1.7);
    transition: .3s transform;
    cursor: pointer;
}

/*----- Modal open image -----*/
.modal-img {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-img .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-img .modal-content, .modal-img .caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.modal-img  .close {
    position: absolute;
    right: 35px;
    top: 35px;
    font-weight: bold;
    line-height: 25px;
    color: #f1f1f1;
    font-size: 60px;
    opacity: 1;
    transition: 0.3s;
}

.modal-img .close:hover,
.modal-img .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}