.gallery-images {
    position: relative;
}
.gallery-images .container {
    position: relative;
}
.gallery-images .buttons-holder {
    position: absolute;
    top: 50%;
    left: 96px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 192px);
    z-index: 10;
    pointer-events: none;
}
.gallery-images .buttons-holder button {
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: all;
    opacity: 1;
    transition: .15s ease-out;
}
.gallery-images .buttons-holder button.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}
.gallery-images .buttons-holder .button-left {
    background-image: url('img/button-left.svg');
}
.gallery-images .buttons-holder .button-right {
    background-image: url('img/button-right.svg');
}
.gallery-images .gallery-images-holder {
    margin-right: calc(calc(50% - 50vw));
}
.gallery-images .swiper .swiper-slide {
    width: auto !important;
}
.gallery-images .image-holder {
    max-width: 460px;
    width: 100%;
    border-radius: var(--radius-20);
    overflow: hidden;
}
.gallery-images .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .gallery-images .image-holder {
        max-width: 272px;
    }
}
@media screen and (max-width: 768px) {
    .gallery-images {
        padding-top: 24px
    }
    .gallery-images .buttons-holder {
        display: none;
    }
}
