.gallery {
    text-align: center;
    overflow: hidden;
    position: relative;
}
.large-image {
    margin-bottom: 10px
}
.large-image img {
    width: 100%;
    max-width: 1122px;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
}
.small-images {
    width: 100%;
    max-width: 1122px;
}
.small-images .item {
    position: relative;
}
.small-images .item img {
    height: 160px;
    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: 60px;
    right: 80px;
    color: #fff;
    font-size: 32px;
    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);
}