

/* --------  Gallery  ----------  */

#gallery {
    top: 882px;
    width: 895px;
    left: 215px;
    height: 410px;
    position: absolute;

}

#galBlock {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 110px;
    /*border: 1px solid red;*/
    background: linear-gradient(90deg, rgba(254,254,254,0) 0%, rgba(255,255,255,0.1) 100%);

    /*backdrop-filter: blur(2px);*/
    background-blend-mode: saturation;
}

#galCon {
    position: absolute;
    width: 798px;
    height: 820px;
    overflow: hidden;
    /*border: 1px solid red;*/
}
/* !! */
.galSlider {
    /*border: 1px solid green;*/
    position: absolute;
    height: 746px;
    width: 5618px;
    transition: left 0.8s ease-in-out;
    display: flex;
    justify-content: space-around;
    background: transparent url("../images/galHP.jpg") no-repeat;
}

.galNavBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    bottom: -25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #283198 url("../images/arrow.png") no-repeat center center;
}

.galLeftBtn {
    left: -104px;
    transform: scale(1.6);
}

.galRightBtn {
    right: -5px;
    transform: rotate(180deg) scale(1.6);
}

.galBtnDisabled {
    filter: grayscale(1) brightness(2) opacity(0.4);
    pointer-events: none;
}

@media screen and (max-width: 1200px) {



    #gallery {
        top: 1145px;
        width: 633px;
        height: 765px;
        left: 20px;
        /*border: 1px solid red;*/
    }

    #galCon {
        width: 584px;
        height: 720px;;
    }
    /* !! */
    .galSlider {
        height: 800px;
        width: 4075px;
        background: transparent url("../images/galMHP.jpg?v=2") no-repeat;
    }

    .galNavBtn {
        bottom: unset;
        top: 350px;
    }

    .galLeftBtn {
        left: -10px;
        transform: scale(1.2);
    }

    .galRightBtn {
        right: 30px;
        transform: rotate(180deg) scale(1.2);
    }

    /* ---- gallery -----------*/

}