
.instagram-feed{
    /*text-align: center;*/
    padding: 5px 0;
    margin-bottom: 40px;
    overflow: hidden;
}
.instagram-feed .instagram{
    overflow: hidden;
    margin: 30px 0;
}
.instagram-feed .instagramPost{
    float: left;
    width: 25%;
}

    .instagram-feed .instagramPost:first-child {
        float: left;
        width: 50%;
    }

.instagram-feed .image{
    display: block;
    margin: 10px;
    position:relative;
}

    .instagram-feed .image::after
    {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

.instagram-feed .image img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1600px)
{
        .instagram-feed {
            margin: 0 -10px 0px -10px;
        }
}
@media screen and (max-width: 480px)
{
    .instagram-feed .instagramPost {
        width: 50%;
    }

        .instagram-feed .instagramPost:last-child {
            display:none;
        }
}

