@charset "UTF-8";

.c-instagram .c-instagram__loader,
.c-instagram .c-instagram__loader:after,
.c-instagram .c-instagram__loader:before {
  border-radius: 100vh;
  width: 15px;
  height: 15px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load 1.8s infinite ease-in-out;
  animation: load 1.8s infinite ease-in-out
}

@-webkit-keyframes load {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 15px 0 -7.5px;
    box-shadow: 0 15px 0 -7.5px
  }

  40% {
    -webkit-box-shadow: 0 15px 0 0;
    box-shadow: 0 15px 0 0
  }
}

@keyframes load {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 15px 0 -7.5px;
    box-shadow: 0 15px 0 -7.5px
  }

  40% {
    -webkit-box-shadow: 0 15px 0 0;
    box-shadow: 0 15px 0 0
  }
}

.c-instagram__loader {
  color: #603813;
  font-size: .8rem;
  margin: 50px auto 100px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s
}

.c-instagram__loader:after, .c-instagram__loader:before {
  content: '';
  position: absolute;
  top: 0;
  left: 3.5em
}

.c-instagram__loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s
}

.c-instagram__content {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .c-instagram__content {
    margin-top: 0;
  }
}

.c-instagram__content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .c-instagram__content ul {
    margin-top: 0;
    grid-template-columns: repeat(6, 1fr);
  }
}

.c-instagram__content ul li {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
}

.c-instagram__content ul li a {
  padding-top: 100%;
  position: relative;
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
  overflow: hidden
}

.c-instagram__content ul li a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out
}

.c-instagram__content ul li a img:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2)
}

.c-instagram .js-loader.is-hidden, .c-instagram .js-content.is-hidden {
  display: none
}