.slider-wrapper
{
    height: 80vh;
    min-width: 60vw;
    max-width: 60vw;
    position: relative;
    margin: 0 auto;
    overflow-x: auto;
}
.slider
{
    min-width: 60vw;
    max-width: 60vw;
    height: 100%;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.carousel
{
    min-width: 60vw;
    max-width: 60vw;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.slide:first-child
{
    background-image: url("../img/grupowe.png");
}
.slide:last-child
{
    background-image: url("../img/dzieci.jpg");
}
.slide
{
    max-width: 60vw;
    min-width: 60vw;
    height: 100%;
    display: flex;
    flex: 1 0 100%;
    justify-content: center;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-snap-align: start;
}
.slide h1
{
    font-size: var(--h1-font-size);
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 7px;
    margin-top: 10vh;
}
.slide .text-container
{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.slide .text-container p
{
    width: 80%;
    margin: 0 auto;
    font-size: 3vh;
}
.slide .text-container button
{
    width: 60%;
    margin: 0 auto 60px;
    font-size: 4vh;
    max-width: 500px;
    
}

@media (max-width: 1800px) {
    .slide, .slider-wrapper, .carousel, .slider, .slider-arrows-nav
    {
        max-width: 95vw;
        min-width: 95vw;
    }
    .slide .text-container p
    {
        font-size: 2.5vh;
    }
}
.slider-arrows-nav
{
    position: fixed;
    width: 60vw;
    display: flex;
    justify-content: space-between;
}
.slider-arrows-nav a
{
    margin: 0 2vw;
    text-decoration: none;
    border: 3px var(--white-color) solid;
    border-radius: 50%;
    height: 5vh;
    padding: 0 1vh;
    font-size: 5vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0.6;
    transition: opacity ease 500ms;
    user-select: none;
}
.slider-arrows-nav a:hover
{
    opacity: 1;
    border-color: var(--orange-color);
    background-color: var(--white-color);
}
.slider-arrows-nav a.hidden
{
    visibility: hidden;
}