.full {
    position: fixed;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .full .content {
    background-color: rgba(0,0,0,0.75) !important;
    height: 100%;
    width: 100%;
    display: grid;
  }
  .full .content img {
    left: 50%;
    transform: translate3d(0, 0, 0);
    animation: zoomin 0.1s ease;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    
  }
  .byebye {
    opacity: 0;
  }
  .byebye:hover {
    transform: scale(0.2) !important;
  }








 




  .container_gallery{
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .gallery {
     overflow: scroll;
     overflow-x: hidden;
    display: grid;
   height: 500px;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 8px;
  }
  .gallery img {
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 0 16px #333;
    transition: all 1.5s ease;
  }
  .gallery img:hover {
    box-shadow: 0 0 32px #333;
  }
  .gallery .content {
    padding: 4px;
  }
  .gallery .gallery-item {
    transition: grid-row-start 300ms linear;
    transition: transform 300ms ease;
    transition: all 0.5s ease;
    cursor: pointer;
  }
  .gallery .gallery-item:hover {
    transform: scale(1.025);
  }
  @media (max-width: 600px) {
    .gallery {
      grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
      height: auto;
      overflow: hidden;
text-align: center;
    }
    .container_gallery{
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 50px;
        padding-bottom: 15px;
      }

  }
  @media (max-width: 400px) {
    .gallery {
      grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));

    }
  }
  

  @keyframes zoomin {
    0% {
      transform: scale(0.5); /* Ø´Ø±ÙˆØ¹ Ø§Ø² Ø³Ø§ÛŒØ² Ú©ÙˆÚ†Ú© */
      opacity: 0; /* Ø´Ø±ÙˆØ¹ Ø§Ø² Ø´ÙØ§ÙÛŒØª ØµÙØ± */
    }
    100% {
      transform: scale(1); /* Ø±Ø³ÛŒØ¯Ù† Ø¨Ù‡ Ø³Ø§ÛŒØ² Ø§ØµÙ„ÛŒ */
      opacity: 1; /* Ù†Ù…Ø§ÛŒØ´ Ú©Ø§Ù…Ù„ */
    }
  }


  
  ::-webkit-scrollbar {
    width: 7px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgba(248, 124, 52, 0.226); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #b300003b; 
  }