.gallery-menu-overlay.active {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #231F20;
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100vh;
    z-index: 1;
}
.gallery-menu {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    margin: 0 auto;
}
.gallery-menu.active {
    display: block;
}
.gallery-menu-slider {
    width: auto;
    display: flex;
    justify-content: center;
}
.gallery-menu-el {
    display: flex;
}
.gallery-menu-el img {

    display: none;
    height: 100vh;
}
.gallery-menu-el img.active {
    display: block;
}
.btn-close-gallery {
    position: absolute;
    top: 20px;
    right: 2%;
    width: 60px;
    height: 60px;
    background: url('../img/gallery/close.png') no-repeat center / 70% 70%,
    linear-gradient( to top, rgb(50, 50, 50) 100%, rgb(50, 50, 50) 100%);
    border-radius: 10px;
    opacity: 0.7;
    transition: 0.2s;
}
.btn-close-gallery:hover {
    opacity: 1;
}
.btn-slider-gallery {
    position: absolute;
    top: 50vh;
    width: 60px;
    height: 80px;
    border-radius: 10px;
    opacity: 0.7;
    transition: 0.2s;
}
.btn-prev-gallery {
    left: 2%;
    background: url('../img/gallery/left.png') no-repeat center / 80% 80%,
    linear-gradient( to top, rgb(50, 50, 50) 100%, rgb(50, 50, 50) 100%);
}
.btn-next-gallery {
    right: 2%;
    background: url('../img/gallery/right.png') no-repeat center / 80% 80%,
    linear-gradient( to top, rgb(50, 50, 50) 100%, rgb(50, 50, 50) 100%);
}
.gallery-menu-el .btn-slider-gallery:hover {
    opacity: 1;
}



/*Responsive*/

/* 577px - 767px */
@media screen and (max-width: 767px) {
    .img-btn-descript .active {
        position: relative;
    }
    .slider-gallery {
        display: flex;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 80px;
        height: 40px;
    }
    .slider-gallery .btn-gallery-slider {
        width: 40px;
        height: 40px;
        background: url('../img/slider-right-red-mini.svg') no-repeat center,
        #F5F5F5;
    }
    #btn-gallery-prev {
        transform: rotate(180deg);
        border-left: 1px solid #E2E2E2;
    }
    .slider-gallery .btn-gallery-slider:hover {
        background: url('../img/slider-right-red-mini.svg') no-repeat center,
        #adadad;
    }
}