#gallery-block {
    padding: 80px 0px;
}
#gallery-block .gallery-img {
    box-sizing: border-box;
}
#gallery-block .gallery-wrapper{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
}
#gallery-block .image{
    width: 100%;
    height: 100%;
}
#gallery-block .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
#gallery-block .image {
    position: relative;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
  }
  #gallery-block .image::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: #3065807c;
    background-image: url(images/loop3.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s;
    opacity: 0;
  }
  #gallery-block .image:hover::before {
    opacity: 1;
  }
  @media (max-width: 776px) {
    #gallery-block .gallery-wrapper {
        grid-template-columns: repeat(3,1fr);
    }
  }
  @media (max-width: 450px) {
    #gallery-block {
        padding-top: 10px;
        padding-bottom: 30px;
    }
    #gallery-block .gallery-wrapper {
        grid-template-columns: repeat(2,1fr);
    }
  }