.gallery_carousel {
  margin: 80px 0;
}
.gallery_carousel .carousel_wrapper {
  position: relative;
}
.gallery_carousel .heading {
  font-size: 2em;
  text-align: center;
  margin-bottom: 30px;
  text-decoration: none;
}
.gallery_carousel .wrap_overflow {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  z-index: 2;
}
.gallery_carousel .wrap_overflow::-webkit-scrollbar {
  display: none;
}
.gallery_carousel .carousel_box {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 300px;
  display: block;
  overflow: hidden;
}
.gallery_carousel .box_inner {
  display: block;
}
.gallery_carousel .box_inner .media_d {
  display: none;
}
.gallery_carousel .box_inner a {
  position: relative;
  display: block;
}
.gallery_carousel .box_inner a span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffffa1;
  padding: 10px;
  color: #000;
  opacity: 0;
  transition: 0.9s;
}
.instagram_gallery_feed.gallery_carousel .box_inner:hover a span {
  opacity: 1;
}
.gallery_carousel .carousel_box img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.gallery_carousel .carousel_nav_wrap {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-20px);
  z-index: 3;
}
.gallery_carousel .carousel_nav {
  background: #ffffff75;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  cursor: pointer;
}
.carousel_nav_wrap .carousel_prev,
.carousel_nav_wrap .carousel_next {
  position: absolute;
}
.carousel_nav_wrap .carousel_prev {
  left: 20px;
}
.carousel_nav_wrap .carousel_next {
  right: 20px;
}