/* .gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
  }
  .gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    box-sizing: border-box;
  }
  .gallery-item img {
    width: 100%;
    height: 250px; /* Set a fixed height for all images /
    object-fit: cover; /* Ensure images cover the container without distortion /
    display: block;
    transition: transform 1.3s ease; /* Smooth zoom transition /

  }
  @media (max-width: 900px) {
    .gallery-item {
      flex: 1 1 calc(50% - 10px);
    }
  }
  @media (max-width: 600px) {
    .gallery-item {
      flex: 1 1 100%;
    }
  }
  @media (min-width: 1500px) {
    .gallery-item img { 
      height: 420px; /* Set a fixed height for all images /
    }
  }
      /* Custom slideIn animation /
      .baguetteBox-slideIn .full-image {
        animation: slideIn 0.5s forwards;
      }
  
      @keyframes slideIn {
        from {
          transform: translateX(100%);
          opacity: 0.4;
        }
        to {
          transform: translateX(0);
          opacity: 1;
        }
      } */

      


      .gallery-item {
        position: relative;
        overflow: hidden;
        padding: 0;
    }
    .gallery-item img {
        width: 100%;
        height: 250px; /* Set a fixed height for all images */
        object-fit: cover;
        display: block;
        transition: transform 0.3s;
    }
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    .overlay3 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 27%;
        background: rgba(0, 0, 0, 0.1);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .gallery-item:hover .overlay3 {
        opacity: 1;
    }
    .row.no-gutters {
        margin: 0;
    }
    .row.no-gutters > [class*='col-'] {
        padding: 0;
    }
    .container-fluid.no-padding {
        padding: 0;
    }
    @media (min-width: 1500px) {
        .gallery-item img { 
          height: 480px; /* Set a fixed height for all images */
        }

      }
    @media (max-width: 600px) {
        .overlay3 {
            opacity: 1;
            height: 20%;
        }
      }