.gallery-section {
    background-image: url("../images/fundal.jpg");
}
.wrapper-gallery {
    margin: 0 20vw;
    padding-bottom: 20px;
}
/*============================== Gallery container ========================================                                   
===========================================================================================*/
#products-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 10px;
    grid-template-areas: 
    "gallery-p gallery-p"
    "gallery-h2 gallery-h2"
    "balustrada1-mica balustrada2-mica"
    "balustrada3-mica balustrada3-mica"
    "balustrada4-mica balustrada5-mica"
    "balustrada6-mica balustrada6-mica"
    "balustrada7-mica balustrada8-mica"
    "balustrada9-mica balustrada9-mica"
    "balustrada10-mica balustrada10-mica";
}
#products-gallery .gallery-img {
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
/* Images */
#products-gallery p {
    grid-area: gallery-p;
    font-size: 20px;
    font-style: italic;
}
#products-gallery h2 {
    grid-area: gallery-h2;
    font-size: 20px;
}
#products-gallery .balustrada1-mica {
    grid-area: balustrada1-mica;
    background-image: url("../images/menu1/balustrazi/balustrada1-mica.jpeg");
}
#products-gallery .balustrada2-mica {
    grid-area: balustrada2-mica;
    background-image: url("../images/menu1/balustrazi/balustrada2-mica.jpeg");
}
#products-gallery .balustrada3-mica {
    grid-area: balustrada3-mica;
    background-image: url("../images/menu1/balustrazi/balustrada3-mica.jpeg");
}
#products-gallery .balustrada4-mica {
    grid-area: balustrada4-mica;
    background-image: url("../images/menu1/balustrazi/balustrada4-mica.jpeg");
}
#products-gallery .balustrada5-mica {
    grid-area: balustrada5-mica;
    background-image: url("../images/menu1/balustrazi/balustrada5-mica.jpeg");
}
#products-gallery .balustrada6-mica {
    grid-area: balustrada6-mica;
    background-image: url("../images/menu1/balustrazi/balustrada6-mica.jpeg");
}
#products-gallery .balustrada7-mica {
    grid-area: balustrada7-mica;
    background-image: url("../images/menu1/balustrazi/balustrada7-mica.jpeg");
}
#products-gallery .balustrada8-mica {
    grid-area: balustrada8-mica;
    background-image: url("../images/menu1/balustrazi/balustrada8-mica.jpeg");
}
#products-gallery .balustrada9-mica {
    grid-area: balustrada9-mica;
    background-image: url("../images/menu1/balustrazi/balustrada9-mica.jpeg");
}
#products-gallery .balustrada10-mica {
    grid-area: balustrada10-mica;
    background-image: url("../images/menu1/balustrazi/balustrada10-mica.jpeg");
}
/* Gallery Image Titles */
.gallery-img div {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-img a {
    font-family: sans-serif;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
.gallery-img div:hover {
    opacity: 0.8;
    transition: all ease-in-out 100ms;
}
/* Popup window when clicked */
.img-window {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.img-window img {
    max-height: 80vh;
    max-width: 80vw;

}
/* Buttons form popup - Next Image */
.img-btn-next {
    display: block;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: #111111;
    position: fixed;
    top: 48vh;
    z-index: 500;
    font-family: sans-serif;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}
.img-btn-next:hover {
    opacity: 0.8;
}
.img-btn-prev {
    display: block;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: #111111;
    position: fixed;
    top: 48vh;
    z-index: 500;
    font-family: sans-serif;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
}
.img-btn-prev:hover {
    opacity: 0.8;
}