/* SLIDESHOW */
/* region */
.slideshow,
.slide,
.slide_img {
    width: 100%;
    height: 100%;
}

.slide {
    position: relative;
}

.slide_fade {
    -ms-animation: fade 8s;
    -moz-animation: fade 8s;
    -webkit-animation: fade 8s;
    animation: fade 8s;
} @keyframes fade {
    0%  {opacity: 0;}
    4%  {opacity: 1;}
    96% {opacity: 1;}
    100%{opacity: 0;}
}

.slide_fade_in {
    -ms-animation: fade_in .24s;
    -moz-animation: fade_in .24s;
    -webkit-animation: fade_in .24s;
    animation: fade_in .24s;
} @keyframes fade_in {
    from {opacity: 0;}
    to {opacity: 1;}
}
 
.slide_img {
    object-fit: cover;
} 
/* endregion */

/* IDENTYFIKATORY (kropki) */
/* region */
.ids_wrap {
    position: absolute;
    bottom: 5%;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.id { 
    box-sizing: border-box;
    display: inline-block;
    border: 1px solid white;
    border-radius: 200px;
    width: 10px;
    height: 10px;
}

.id_active {
    background-color: white;
}
/* endregion */

/* TEXT */
/* region */
.slide > .link { 
    position: absolute; 
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
}

.slide > .link > a {
    align-self: center;
    min-width: 200px;
    max-width: 500px;
    text-align: center;
    color: white;
}

.slide > .link > a > .info{
    font-size: 3em;
}
/* endregion */