      
        .gallery {
            width: 96%;
            margin: auto;
            padding: 5px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            box-shadow: 2px 2px 2px;
        }

        .gallery-item {
            flex: 1 1 calc(33.333% - 10px);
            box-sizing: border-box;
            overflow: hidden;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .gallery-item img:hover {
            transform: scale(1.1);
        }

        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .lightbox-content {
            position: relative;
            width: 96%;
            margin:  auto;
            box-shadow: 2px 2px 2px white;
        }

        .mySlides {
            display: none;
        }

        .mySlides img {
            width: 100%;
            height: auto;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
        }

        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        .prev,
        .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.6s ease;
            user-select: none;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

        .prev:hover,
        .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
      /*-----------------760----------------------------------*/
      @media (min-width: 760px) {
        .lightbox-content {
            width: 85%;
        }
      }
         /*-----------------860----------------------------------*/
         @media (min-width: 860px) {
            .lightbox-content {
                width: 80%;
            }
          }
           /*-----------------920----------------------------------*/
         @media (min-width: 920px) {
            .lightbox-content {
                width: 70%;
            }
          }
            /*-----------------1050----------------------------------*/
         @media (min-width: 1050px) {
            .lightbox-content {
                width: 60%;
            }
          }
             /*-----------------1200----------------------------------*/
         @media (min-width: 1200px) {
            .lightbox-content {
                width: 55%;
            }
          }
          
          