
.gallery-heading {
    width: 90%;
    height: fit-content;
    font-weight: 200;
    padding: 20px;
    border-bottom: 1px solid var(--border-green-color);
  }

  .side-heading {
    width: fit-content;
    height: fit-content;
    color: rgb(41, 41, 41);
    font-size: 25px;
    font-weight: 300;
  }
  
.hidden {
    display: none;
  }

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }

  .prev, .next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transform: translateY(-50%);
  }
  
  .prev {
    left: 30px;
  }

  .next {
    right: 30px;
  }

  
  .gallery-clinic {
    width: 90%;
    height: fit-content;
    padding: 10px;
    border-bottom: 1px solid var(--border-green-color);
  }

  
  .gallery_button_container {
    display: flex;
    flex-direction: row;
    justify-content: end;
    width: 90%;
  }

  .gallery_button {
    width: 150px;
    border-radius: 50px 0px 0px 0px;
    background-color: #872b03a0;
    /* Your original background color */
    height: fit-content;
    padding: 5px;
    text-align: center;
    color: white;
    border: none;
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
    cursor: pointer;
    /* Adjust opacity here (value between 0 and 1) */
  }

  .gallery_button:hover{
    transform: scale(1.1);
    cursor: pointer;
  }

/* Lightbox styling */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
  }



.image_popup_container{
    position: fixed;
    top: 0%;
    left: 0%;
    background: rgba(0,0 , 0, .9);
    height: 100%;
    width: 100%;
    display: none;
    z-index: 100;
  }
  .image_popup_container span{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bolder;
    color: white;
    cursor: pointer;
    z-index: 100;
  }
  .image_popup_container span:hover{
    color: red;
  }
  .image_popup_container img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 1px solid #fff;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
  }
  @media (max-width:768px) {
    .image_popup_container img{
      width: 90%;
    }
  }

  @media only screen and (max-width: 450px) {

    .gallery_button {
      width: 150px;
      border-radius: 50px 0px 0px 0px;
      background-color: #872b03a0;
      height: fit-content;
      padding: 5px;
      text-align: center;
      color: white;
      border: none;
      font-size: 0.9rem;
      font-weight: 700;
      opacity: 1;
    }

    .side-heading {
        font-size: 0.9rem;
      }
  }

  @media only screen and (max-width: 1100px) {

    .side-heading {
        font-size: 2rem;
      }
  }

  @media only screen and (max-width: 900px) {

    .side-heading {
        font-size: 1.8rem;
      }
  }

  @media only screen and (max-width: 700px) {

    .side-heading {
        font-size: 1.5rem;
      }
  }
  