.instagramImageContainer {
    width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.instagramSlide {
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    float: left;
}

.sliderLeftArrowIg {
    left: calc(2.5% + 20px);
    position: absolute;
    height: 40px;
    width: 40px;
    z-index: 9;
    top: 40%;
    cursor: pointer;
    /* background-size: 50% 50%; */
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    background-image: url(../../files/blackArrow.png);
    border: solid;
    border-width: thin;
    backdrop-filter: blur(2px);
}

.sliderRightArrowIg {
    right: calc(2.5% + 20px);
    display: block;
    position: absolute;
    top: 40%;
    z-index: 1;
    width: 40px;
    height: 40px;
    /* background-size: 50% 50%; */
    background-position: 50% 50%;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transform: rotate(180deg);
    background-image: url(../../files/blackArrow.png);
    border: solid;
    border-width: thin;
    backdrop-filter: blur(2px);
}

@media screen and (max-width:768px) {
    .instagramImageContainer {
        width: 90%;
        margin: 0 auto;
    }
}