



.gallery-prev {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
 }
 .featurette-divider {
  margin: 5rem 8rem !important; 
}
 .gallery-next{
   background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
 }

.gallery-item{
  height: 70vh;
}
.gallery-item img {
  height: 100%; 
  width: 100%;
  object-fit: contain; 
  object-position: center; 
}
#gallery_content{

  margin-top: 12rem;
}

@media screen and (max-width: 768px) {
  .gallery-item{
    height: 50vh;
  }

  .gallery-item img {
    height: 100%; /* Set the height to 100% of its container */
    width: 100%; /* Set the width to 100% of its container */
    object-fit: contain; /* This will make sure the image is scaled down to fit the container without being cropped */
    object-position: center; /* This will center the image within the container */
  }

  #gallery_content{

    margin-top: 8rem;
  }
  
}