/* ===================================
    Optional styles
====================================== */

#instagram-feed1,
#instagram-feed2 {
  overflow: hidden;
}
#instagram-feed1 .instagram_new,
#instagram-feed2 .instagram_new {
  height: 100%;
  /* padding: 0 1px 1px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; */
} 
#instagram-feed1 .instagram_new img.insta-image,
#instagram-feed2 .instagram_new img.insta-image {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
#instagram-feed1 .instagram_new .insta-link,
#instagram-feed2 .instagram_new .insta-link {
  position: relative;
  display: block;
  padding-top: 100%;
  background-color:#232323;
  background-image: url("/images/instagram_icon.png");
  background-size: 20%;
  background-position: center center;
  background-repeat: no-repeat;
}
#instagram-feed1 .instagram_new .insta-link:hover .insta-image,
#instagram-feed2 .instagram_new .insta-link:hover .insta-image {
  opacity: 0.2;
}
#instagram-feed1 .instagram_new .caption,
#instagram-feed2 .instagram_new .caption {
  overflow: hidden;
  text-overflow: ellipsis; 
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; 
  font-size: 0.85rem;
  line-height: normal;
}
.carousel-control-prev {
  left: -9%; /* Posiciona o botão "Anterior" à esquerda */
  top: 50%; /* Centraliza verticalmente */
  transform: translateY(-50%); /* Centraliza verticalmente */
}

.carousel-control-next {
  right: -9%; /* Posiciona o botão "Próximo" à direita */
  top: 50%; /* Centraliza verticalmente */
  transform: translateY(-50%); /* Centraliza verticalmente */
}