
/* KUVAGALLERIA */
.fp-photogallery-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: 1fr; */
    width: 100%;
    margin: 0;
}

#fp-photogallery-single-3,
#fp-photogallery-single-4 {
    display: none;
}

.fp-photogallery-single {
    width: 100%;
    height: 10rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.fp-photogallery-single-big {
    height: 30rem;
}

/* ---------------- MEDIA */

/* TABLET */
@media screen and (min-width: 500px) {


    .fp-photogallery-single {
        height: 40vh;
        height: 40dvh;
    }
    
}

/* DESKTOP */
@media screen and (min-width: 900px) {


    .fp-photogallery-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr;
    }

    #fp-photogallery-single-3,
    #fp-photogallery-single-4 {
        display: block;
    }

    .fp-photogallery-single-big {
        height: 90vh;
        height: 90dvh;
    }
}

/* DESKTOP */
@media screen and (min-width: 1200px) {

}