/* slideshow styling */

.slider {

    /* number of slides, this is changed in slider.js */
    --slides: 1;

    display: flex;
    align-items: center;
    height: 100vh;
    width: 100%; /* fallback if calc isnt supported */
    width: calc(var(--slides)*100%);
    overflow-y: hidden;
    overflow-x: hidden;

    transition: transform .5s ease-out;
    transform: translate(calc(var(--i, 0)/var(--slides)*-100%));
}

.slider .slide {
    /* needed for chrome */
    width: 100%;

    width: calc(100%/var(--slides));
    pointer-events: none;
}

.dot-container {
    width: 60px;
    display: flex;
    position: absolute;
    left: 45%;
    bottom: 60px;
}

.dot {
    height: 8px;
    width: 8px;
    margin-right: 8px;
    border-radius: 50px;
    border: 1px solid #ffffff;
}

.dot:hover {
    background-color: rgb(185, 184, 184);
}

.current-slide {
    background-color: #ffffff;
}

.slider3 {
    height: 60vh;
}

.slide3 {
    height: 60vh;
}

.slide3 img {
    height: 60%;
}