section.instgram-row {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 0;
  margin: 30px 0;
}
@media screen and (max-width: 500px) {
  section.instgram-row {
    margin: 0;
  }
}
section.instgram-row div.instagram-row-background {
  display: flex;
  align-items: center;
  width: 150%;
  margin: 0 -5vw;
}
@media screen and (max-width: 1024px) {
  section.instgram-row div.instagram-row-background {
    margin: 0 -10vw;
  }
}
section.instgram-row div.instagram-row-background > picture {
  position: relative;
  margin: 0 1.5vw;
  background-color: #000;
  transition: opacity 0.5s ease;
}
section.instgram-row div.instagram-row-background > picture:first-child {
  margin-left: 0;
}
section.instgram-row div.instagram-row-background > picture:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  section.instgram-row div.instagram-row-background > picture:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  section.instgram-row div.instagram-row-background > picture:nth-child(1) {
    display: none;
  }
  section.instgram-row div.instagram-row-background > picture:nth-child(3) {
    display: none;
  }
}
section.instgram-row div.instagram-row-background > picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.3;
}
section.instgram-row div.instagram-row-overlay > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  isolation: isolate;
}
section.instgram-row div.instagram-row-overlay > div h4 {
  color: var(--global-palette1);
  font-style: italic;
  font-size: 7.5rem;
  font-weight: 900;
  text-align: center;
  margin: 0;
  line-height: 1;
  word-break: keep-all;
}
@media screen and (max-width: 1024px) {
  section.instgram-row div.instagram-row-overlay > div h4 {
    font-size: 2rem;
  }
}
section.instgram-row div.instagram-row-overlay > div h4 span {
  color: #FFF;
}
section.instgram-row div.instagram-row-overlay > div p {
  color: #FFF;
  text-align: left;
  font-weight: bold;
}