#pleasedontshow  {
  display: none !important;
}
.img-noshow {
  display: none !important;
}
.ps-gallery {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    grid-template-rows: 2.6fr 2.4fr;
    gap: 5px 5px;
    grid-template-areas:
      "Feature img1 img2"
      "Feature img3 img4";
    width: 100%;
    height: 100%;
    min-height: 300px;
    margin-bottom: 10px;
  }
  
  .ps-gallery img {
    width: 100%;
    height: 100%;
    /* object-fit: cover;
    object-position: top; */
    border-radius: 5px;
  }
  
  .featured-gallery {
    grid-area: Feature;
    width: 100%;
    height: 100%;
  }
  
  .img1 {
    grid-area: img1;
    width: 100%;
    height: 100%;
  }
  
  .img2 {
    grid-area: img2;
    width: 100%;
    height: 100%;
  }
  
  .img3 {
    grid-area: img3;
    width: 100%;
    height: 100%;
  }
  
  .img4 {
    grid-area: img4;
    width: 100%;
    height: 100%;
  }
  
  .img1 img,
  .img2 img,
  .img3 img,
  .img4 img,
  .featured-gallery img {
    min-width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
    max-height: calc((60vh - 64px) / 2) !important;
    vertical-align: bottom;
  }
  
  .featured-gallery img { 
    min-width: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
    max-height: calc(60vh - 64px) !important;
    vertical-align: bottom;
  }
  
  .gallery-count {
      bottom: 5%;
      right: 5%;
      position: absolute;
      background: #2f3034b8;
      color: white;
      width: 150px;
      padding: 5px;
      border-radius: 5px;
      color: white;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 800;
  }
  
  .gallery-count:hover i, .gallery-count:hover span{
      color: #ffffff;
  }

  /*2x2 grid for honeymoon gallery */
  .ps-honeymoon-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px 5px;
    grid-template-areas:
      "Feature img1"
      "img2 img3";
    width: 100%;
    height: 100%;
    min-height: 300px;
    margin-bottom: 10px;
  }
  .ps-honeymoon-gallery img {
    border-radius: 5px;
  }



  /*add media script for less than 1000px */
  

  @media (max-width: 680px) {
    .ps-gallery {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      height: 40%;
      min-height: 400px;
    }
    .featured-gallery {
        /* max-height: 200px; */
      }
    .img1, .img2, .img3, .img4 {
        max-height: 150px;
        max-width: 49%;
    }
      .ps-wedding-gallery .img1, .ps-wedding-gallery .img2, .ps-wedding-gallery .img3, .ps-wedding-gallery .img4 {
        max-width: 100%;
        max-height: 200px;
    } 
  }


  .ps-wedding-gallery {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-template-rows: 2.6fr 2.4fr;
    gap: 5px 5px;
    grid-template-areas:
      "img1 Feature img2"
      "img3 Feature img4";
    width: 100%;
    height: 100%;
    min-height: 300px;
    margin-bottom: 10px;
}
.ps-wedding-gallery img {
  border-radius: 5px;
}
@media (max-width: 600px) {
  .ps-wedding-gallery {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 2fr 1fr;
      grid-template-areas:
        "img1 img2"
        "Feature Feature"
        "img3 img4";
  }
  .featured-gallery, .img1, .img2, .img3, .img4 {
      max-width: 100%;
      height: auto;
  }
}