.project-cover {
    height: 70vh;
}

#gallery-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .9);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

#galleryCarousel {
    width: 100%;
    height: 90vh;
}

#galleryCarousel .carousel-control-next-icon {
    -webkit-animation: swipe-right 1.2s linear infinite;
    -o-animation: swipe-right 1.2s linear infinite;
    animation: swipe-right 1.2s linear infinite;
}

#galleryCarousel .carousel-control-prev-icon {
    -webkit-animation: swipe-left 1.2s linear infinite;
    -o-animation: swipe-left 1.2s linear infinite;
    animation: swipe-left 1.2s linear infinite;
}

.carousel-control-next-icon {
    filter: unset !important;
    color: white;
}

#galleryCarousel .carousel-control-prev-icon {
    filter: unset !important;
    color: white;
}

#galleryCarousel .carousel-control-next, .carousel-control-prev {
    width: 10%;
    opacity: 1;
}

#galleryCarousel .carousel-inner {
    height: 75vh;
}

#galleryCarousel .carousel-inner img {
    object-fit: scale-down;
    max-height: 80vh;
}

#gallery-slideshow .close-gallery-container {
    color: #fff;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 99999;
}

@keyframes swipe-right {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes swipe-left {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}
