.gallery {
    /*width: 90%;*/
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   /*******"******/
   margin-left:auto;
   margin-right:auto;

  }
  

   
   

  
  .gallery__card__pic {
   position: absolute;
   width: 100%;
    height: 100%;
    object-fit: cover;
   /* transition: 0.2s;
    box-shadow: 3px 3px 3px rgb(99, 97, 97);*/
       
  }

  
 /* .gallery__card:hover .gallery__card__pic {
    transform: scale(1.1);
  
  }*/

  

  .gallery__card {
    position: relative;
    height: 240px;/*200*/
    cursor: pointer;
    overflow: hidden;
    margin: 5px;
    border-radius: 10px;
  
  }

  .slider {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11 8 8);
    pointer-events: none;
  }
  
  .active {
    opacity: 1;
    pointer-events: all;
    z-index:1000000010;
  }
  
  .slider__container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:#f0c0cd9; /*#5d5c5c9e*/
    width: 99vw;/*80vw;*/
    height: 79vh;/*80vh;*/
  }
  
  .slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 20px;
    color: #fffcfc;
    font-size: 40px;
    z-index: 10;
  }
  
  .slider__btn_left {
    left: 25px;
  }
  
  .slider__btn_right {
    right: 25px;
  }
  
  .slider__close {
   position: absolute;
    right: 0;
    top: 0;
    font-size: 40px;
    padding: 20px;
    color: #fffcfc;
    background: none;
    border: none;
  }