.instagraSliderContainer {
    width: 100%;
    margin: 5rem 0 4%;
    display: block;
    position: relative;
    float: left;
}

.instagramSliderTexts {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--web-container);
    margin: 0 auto 10px;
    text-transform: uppercase;
    color: #fff;
}

.instagramSliderTitle {
    font-size: 22px;
    line-height: var(--button-line-height);
    position: relative;
    padding-top: 15px;
    /* padding-bottom: 15px; */
    font-weight: 600;
    overflow: hidden;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.InstagramRightArrow {
  /* position: absolute; */
  right: 11px;
  right: 48%;
  top: calc(18% - 70px);
  z-index: 1;
  width: 29px;
  object-fit: contain;
  height: 29px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 100px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url(../../files/look-left-arrow.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: 48% center;
}

.InstagramLeftArrow {
    /* position: absolute; */
    /* left: 48%; */
    /* top: calc(18% - 70px); */
    /* z-index: 1; */
    cursor: pointer;
    transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    height: 29px;
    width: 29px;
    object-fit: contain;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 100px;
    background-image: url(../../files/look-left-arrow.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: 46% center;
}

.InstagramLeftArrow:not(.slick-disabled):hover,
.InstagramRightArrow:not(.slick-disabled):hover {
  /* opacity: 0.8 !important; */
  background-image: url(../../files/look-left-arrowBlack.svg)!important;
  background-repeat: no-repeat !important;
  background-size: 8px !important;
  background-position: 49% 8px !important;
  background: #fff;
}
.sliderRightArrow:not(.slick-disabled):hover{
  background-position: 49% 8px !important;
}
.arrowInstagramContainer {
    position: relative;
    width: var(--web-container);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4rem;
}
.instagramSliderSeeMore {
    width: fit-content;
    display: block;
    float: left;
    text-align: right;
    font-size: var(--base-font-size);
    position: relative;
}

.instagramSliderSeeMore.lineEffectLeft::after {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    height: 1px;
    background: var(--base);
    -webkit-transition: width 0.4s;
    -o-transition: width 0.4s;
    transition: width 0.4s;
    bottom: 19px;
}

.instagramSliderSeeMore.lineEffectLeft:hover::after {
    width: 100%;
}

.instagramSliderSeeMore.lineEffectLeft::after {
    bottom: 0px;
}

.instagramSliderGroupContainer {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.instagramSliderGroupSliderContainer {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.instagramSlide {
    position: relative;
    margin-inline: 5px;
    float: left;
    aspect-ratio: 296 / 402;
}

.instagramImageContainer {
    overflow: hidden;
    display: block;
    position: relative;
    height: auto;
    width: 100%;
    aspect-ratio: 296/402;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}


@media screen and (max-width:768px) {
    .instagraSliderContainer {
        margin: 0px 0 24px;
    }

    .instagramSliderTexts {
        flex-direction: column;
    }

    .instagramSliderTitle {
        position: relative;
        overflow: hidden;
        text-align: center;
        padding-bottom: 10px;
    }

    .instagramSliderSeeMore {
        text-align: center;
        padding-bottom: 1rem;
    }

    .instagramSliderSeeMore.lineEffectLeft:hover::after {
        width: 0%;
    }

    .instagramSlide {
        margin-inline: 3px;
    }
}