
#gallery{
    position: absolute;
    display: block;
    top: 1470px;
    left: 0px;
    right: 0;
    height: 770px;
    width: 1440px;
 /*   border: 1px solid red;*/
}

#galCon {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0px;
    left: 0;
    width: 1440px;
    height: 770px;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
/*    border: 1px solid green;*/
}

.galSlider {
    position: absolute;
    height: 770px;
    width: 5761px;
    display: flex;
/*    border: 1px solid red;*/
    justify-content: space-around;
    transition: left 0.4s ease-in-out;
    background: transparent url("../images/gal/Desktop-Gallery.jpg?v2") no-repeat;
}

.galBtnDisabled {
    pointer-events: none;
    opacity: 0.2;
}

#quickBtnCon {
    position: absolute;
    width: 290px;
    left: 588px;
    height: 40px;
    top: 736px;
    margin-top: 2px;
    display: flex;
    justify-content: center;
}

#BtnCon {
    display: flex;
    height: 25px;
    position: relative;
}

.hitQuick {
    border-radius: 50%;
    height: 24px;
    width: 24px;
    margin-right: 6px;
    background-color: #222;
    opacity: 0.8;
    cursor: pointer;
    outline: 4px solid #fff;
}

.galNavBtn {
    display: block;
    position: absolute;
    top: 350px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url("../images/gal/arrow.png") no-repeat;
}

.galLeftBtn {
    left: 50px;
    transform: scale(1.8);
}

.galRightBtn {
    right: 50px;
    transform: scale(1.8) rotate(180deg);
}

#quickIndicator {
    position: absolute;
    top:4px;
    margin-left: 4px;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    background-color: #fff;
    transition: left 0.2s ease-in-out;
}


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

    #gallery{
        position: absolute;
        display: block;
        top: 1160px;
        left: 0px;
        right: 0;
        height: 1150px;
        width: 635px;
    }

    #galCon {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 0;
        left: 0;
        width: 635px;
        height: 1170px;
        align-items: center;
        justify-content: space-between;
    }

    .galSlider {
        position: absolute;
        height: 1170px;
        width: 2540px;
        display: flex;
        justify-content: space-around;
        transition: left 0.3s ease-in-out;
        background: transparent url("../images/gal/Mobile-Gallery.jpg?v2") no-repeat;
    }

    .galBtn {
        width: 405px;
        height: 220px;
        /*border: 1px solid red;*/
    }

    #quickBtnCon {
        position: absolute;
        width: 290px;
        left: 168px;
        height: 40px;
        top: 1186px;
        margin-top: 2px;
        display: flex;
        justify-content: center;
    }

    .galNavBtn {
        display: block;
        position: absolute;
        top: 450px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        background: transparent url("../images/gal/arrow.png") no-repeat;
    }

    .galLeftBtn {
        left: 16px;
        transform: scale(1.8);
    }

    .galRightBtn {
        right: 16px;
        transform: scale(1.8) rotate(180deg);
    }

}