.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    box-sizing: border-box;
    padding-top: 80px;
}

@media screen and (max-width: 768px) {
    .slide {
        flex-direction: column;
    }
}
 