.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"
    "grinda1-mica grinda2-mica"
    "grinda3-mica grinda4-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 .grinda1-mica {
    grid-area: grinda1-mica;
    background-image: url("../images/menu1/grinzi/grinda1-mica.jpeg");
}
#products-gallery .grinda2-mica {
    grid-area: grinda2-mica;
    background-image: url("../images/menu1/grinzi/grinda2-mica.jpeg");
}
#products-gallery .grinda3-mica {
    grid-area: grinda3-mica;
    background-image: url("../images/menu1/grinzi/grinda3-mica.jpeg");
}
#products-gallery .grinda4-mica {
    grid-area: grinda4-mica;
    background-image: url("../images/menu1/grinzi/grinda4-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;
}