.instagram-feed .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
}

.instagram-item {
  width: 100%;
  overflow: hidden;
}

.instagram-feed .swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
}

.instagram-feed .swiper-slide a img,
.instagram-feed .swiper-slide a video {
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

/*Swiper*/
.carousel-instagram-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: black;
  position: relative;
}

/* .carousel-instagram-pagination {
  margin-top: 3%;
} */

.instagram-feed .swiper-wrapper {
  display: flex;
}

.carousel-instagram-next,
.carousel-instagram-prev {
  height: 47px;
  width: 47px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #182540;
  border-radius: 100%;
  top: 50%;
  position: absolute;
  transform: translate(0, -50%);
}

.carousel-instagram-next {
  right: 1rem;
}

.carousel-instagram-prev {
  left: 1rem;
}

.instagram-feed__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #182540;
  opacity: 0;
}

.swiper-slide:hover .instagram-feed__overlay {
  opacity: 1;
}

.instagram-feed__overlay svg {
  width: 24px;
}