.gallery {
    overflow: hidden;
}
.large-image {
    margin-bottom: 10px
}
.large-image img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
}
.small-images {
    width: 100%;
}
.small-images .item {
    position: relative;
}
.small-images .item img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    border-radius: 10px;
}

.small-images .item img:hover {
    border-color: rgb(0, 68, 54);
}

.gallery_number {
    display: block;
    position: absolute;
    z-index: 999;
    bottom: 25px;
    right: 38px;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.fancybox-thumbs__list a:before {
    border: 6px solid  rgb(0, 68, 54);
}