* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.container87 {
    height: 30vh;
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
}

.slideshow87 {
    height: 100%;
    width: 100%;
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    scrollbar-width: none;
}

.slideshow87::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none;
    visibility: hidden;
}

.slides87 {
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    flex-shrink: 0;
    object-fit: cover;
    position: relative;
}

.slidesImg87 {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slidesText87 {
    position: absolute;
    top: 80%;
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px black;
    background: linear-gradient(to top, #125193, #125193bb, #12519300);

}


.controls87 {
    color: white;
    position: absolute;
    top: 50%;
    z-index: 8;
    cursor: pointer;
}

#goLeft {
    left: 10px;
    width: 4rem;
    height: 4rem;
    background-color: #125193;
    padding: 10px;
    border-radius: 50%;
}

#goRight {
    right: 10px;
    width: 4rem;
    height: 4rem;
    background-color: #125193;
    padding: 10px;
    border-radius: 50%;
}

.currentSlideIndicatorsContainer {
    position: absolute;
    top: 87%;
    display: flex;
    background: #125193bf;
    padding: 1rem 2rem;
    border-radius: 1rem;
    z-index: 100;
}

.currentSlideIndicators {
    height: 1rem;
    width: 1rem;
    margin: 0.25rem;
    border-radius: 50%;
    border: 1px solid black;
    background: #000000;
    cursor: pointer;
}



@media (min-width: 768px) {
    .container87 {
        height: 100vh;
    }

    .slidesText87 {
        font-size: 4rem;
    }
}
