.instagram-slider {
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 80%, rgba(241,243,243,1) 80%);
  margin-top: 80px;
  overflow: hidden;
}
.instagram-slider__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: calc(100vw - 32px);
  margin: auto;
}

.instagram-slider__images {
  cursor: grab;
}
.instagram-slider__images picture {
  display: block;
  width: fit-content;
}
@media all and (min-width: 1000px){
  .instagram-slider__wrapper {
    max-width: calc(100vw - 64px);
    gap: 110px;
  }
}

.instagram-slider__title h2::before {
  content:"";
  width: 45px;
  height: 45px;
  background-image: url("../../images/instagram.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  padding-right: 32px;
}