/*  PHOTO GALLERY CSS STARTS BY MANOHAR */
.photogallery-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f443361f;
    padding: 1rem 1rem 0rem;
  }
  
  .photogallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    & h2 {font-weight: 700;}
  }
  
  .photogallery-header h1 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .photogallery-view-all {
    color: #000000;
    text-decoration: none;
   
  }
  .photogallery-view-all:hover {color: #1160f4;}
  .photogallery-gallery a{
    width: 50%;
  }
  
  .photogallery-gallery-container {
    position: relative;
    overflow: hidden;
  }
  .photogallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .photogallery-gallery a:hover .photogallery-image-container img {opacity:.9;}
  .photogallery-gallery a:hover h3 {color:#0066cc}
  .photogallery-gallery {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
  }
  
  .photogallery-gallery-item {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .photogallery-image-container {
    position: relative;
    height: 180px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  
  .photogallery-image-count {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .photogallery-camera-icon {
    width: 16px;
    height: 16px;
  }
  
  .photogallery-gallery-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;font-weight: 600;
    line-height: 1.5;white-space: normal; overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2;
    display: -webkit-box; -webkit-box-orient: vertical; padding: 0;
  }
  
  .photogallery-gallery-item p {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    visibility: hidden;
  }
  .photogallery-button-sec{
    display: flex;
    justify-content: end;
    margin: 0rem 0rem 1rem;
  }
  .photogallery-nav-button {
    background-color: #b5e6bd;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 24px;
    height: 24px;
  }
  
  .photogallery-nav-button:hover {
    background-color: #ffb142;
  }
  
  .photogallery-nav-button svg {
    width: 24px;
    height: 24px;
  }
  /* PHOTO GALLERY CSS ENDS */

  @media (min-width: 768px) {
    .photogallery-gallery a{
      width: 25%;
    }
  }
  @media (max-width:768px) {
    .photogallery-image-container {height: 115px;}
    .photogallery-gallery {gap: 13px;white-space: nowrap;overflow-x: scroll;}
    .photogallery-gallery-item h3 {-webkit-line-clamp: 3;}
    .photogallery-gallery a {white-space: normal;}
  }