.fullscreen-slideshow {
	position: relative;
	height: 60%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hide the images by default */
.slideshow-slide {
	width: auto;
	height: 66%;
	object-fit: cover;
	position: absolute;
    top: 50%;
    left: 50%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	transform: translate(-50%, -76%);
}

.slideshow-active-slide {
	opacity: 1;
}

/* Next & previous buttons */
.slideshow-prev, .slideshow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: #2f327a;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
	text-decoration: none;
}

.slideshow-prev {
	left: 0;
	border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.slideshow-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    /* On hover, add a black background color with a little bit see-through */
    .slideshow-prev:hover, .slideshow-next:hover {
        color: #c19c61;
		text-decoration: none;
    }

/* The dots/bullets/indicators */
.slideshow-dot-container {
	text-align: center;
	position: relative;
	top: 10px;
}

.slideshow-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.slideshow-active-dot, .slideshow-dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 5s;
}

@keyframes fade {
    from { opacity: .4 }
    to { opacity: 1 }
}

/* Text Overlay */
.slideshow-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 24px;
    color: #000;
    z-index: 2;
}

/*** CSS COMPATIBILITY FOR SMALLER SCREENS ***/
@media (max-width: 767px) {
	
}
@media screen and (min-width: 768px) and (max-width: 895px) {
    .slideshow-slide {
        width: 100%;
        height: auto;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .slideshow-prev, .slideshow-next {
        color: whitesmoke;
    }
    
    .slideshow-prev:hover, slideshow-next:hover {
        color: lightgray;
    }
    
}
