.full-screen-gallery {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.73);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 100;
    transform: translate3d(0px, 0px, 0.0001px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--timing-function), opacity var(--timing-function);
}

.active-full-screen-gallery {
    transform: translate3d(0px, 0px, 0.0001px);
    opacity: 1;
    pointer-events: auto;
}

.p-references-gallery-active .full-screen-gallery {
    transform: translate3d(0px, 0px, 0.0001px);
    opacity: 1;
    pointer-events: auto;
}

.full-screen-gallery-image {
    width: 100%;
    height: 400px;
}

.full-screen-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.full-screen-gallery-container {
    margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
}

.full-screen-gallery-closer {
    position: absolute;
    right: 0px;
    top: 0px;
}

.full-screen-gallery-closer svg {
    max-width: 25px;
    width: auto;
    height: auto;
    max-height: 25px;
}

.full-screen-swiper-pagination {
    position: static !important;
    color: var(--white);
    margin-top: 30px;
}

.full-screen-swiper-button {
    position: absolute;
    background: none;
    padding: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--white);
    background-color: rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translate(0, -50%);
    z-index: 9;
}

.full-screen-swiper-button svg {
    max-height: 16px;
    width: auto;
    height: auto;
}

.full-screen-prev {
    left: 0px;
}

.full-screen-next {
    right: 0px;
}

@media only screen and (min-width:992px) {
    .full-screen-gallery-image {
        height: 500px;
    }

    .full-screen-gallery-swiper .full-screen-gallery-image {
        transition: transform .5s ease-in-out, opacity .5s ease-in-out;
        transform: scale(0.8);
        opacity: 0.5;
    }

    .full-screen-gallery-swiper .swiper-slide-active .full-screen-gallery-image {
        transform: scale(1);
        opacity: 1;
    }

    .full-screen-gallery-swiper {
        overflow: unset !important;
    }

    .full-screen-gallery {
        overflow: hidden !important;
    }

    .full-screen-gallery-container {
        margin-top: 130px;
        padding-top: 60px;
    }

    .full-screen-gallery-closer {
        top: -30px;
    }
}

@media only screen and (min-width:1200px) {
    .full-screen-gallery-image {
        height: 535px;
    }

    .full-screen-gallery-container {
        margin-top: 100px;
        padding-top: 50px;
    }
}

@media only screen and (min-width:1400px) {
    .full-screen-gallery-image {
        height: 510px;
    }

    .full-screen-gallery-closer svg {
        max-width: 30px;
        max-height: 30px;
    }
}

@media only screen and (min-width:1600px) {
    .full-screen-gallery-image {
        height: 580px;
    }
}

@media only screen and (min-width:1800px) {
    .full-screen-gallery-image {
        height: 650px;
    }
}

@media only screen and (min-width:992px) and (hover:hover) {
    .full-screen-gallery-closer {
        cursor: pointer;
        transition: opacity var(--timing-function);
    }

    .full-screen-gallery-closer:hover {
        opacity: 0.5;
    }

    .full-screen-swiper-button {
        transition: background-color var(--timing-function);
    }

    .full-screen-swiper-button svg {
        transition: transform var(--timing-function);
    }

    .full-screen-swiper-button:hover {
        background-color: rgba(255, 255, 255, 0);
    }

    .full-screen-next:hover svg {
        transform: translate3d(5px, 0px, 0.0001px);
    }

    .full-screen-prev:hover svg {
        transform: translate3d(-5px, 0px, 0.0001px);
    }
}