
.homepage-slideshow {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.home-slide {
    position: absolute;
    /* top:0 left:0*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the image */
    width: auto;
    height: 100%;
    /*
    object-fit: cover;
*/max-width:fit-content;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    align-self:center;
}

.home-slide.active {
    opacity: 1;
}
@media screen and (max-width:779px) {
    .home-slide {
    position: absolute;
    /* top:0 left:0*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the image */
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width:fit-content;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    align-self:center;
}
}