.gallery {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.gallery .image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img1 {
    opacity: 1;
    z-index: 10;
}

.container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 
    .gallery .image {
        background-size: contain;
    }
}

@media screen and (min-width: 1024px) {
    .gallery .image {
        background-size: contain;
    }
}

.arrow2 {
    position: fixed;
    top: 10%;
    right: 3.5%;
    z-index: 1000;
}

.instructionsOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    z-index: 999;
}

.emailWarning {
    display: none;
}