.slider-container
{
    position: relative;
    left: 0;
    top: 0;
    height: 700px;
    min-width: 100vw;
    width: 100vw;
    overflow-x: scroll;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    background-color: black;
    scroll-behavior: smooth;
}
.slider-shield
{
    position: absolute;
    background-color: red;
    width: 100%;
    height: 700px;
    z-index: 10;
    background-color: rgba(0,0,0,0);
}
.slider-item
{
    position: relative;
    height: 100%;
    min-width: 100%;
    width: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-item::before
{
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.5);
}
.slider-description-container
{
    position: relative;
    height: 100px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 20px;
}
.slider-title
{
    font-family: 'Bebas Neue', cursive;
    color: white;
    font-size: 50px;
}
.slider-content
{
    font-family: 'Noto Sans', sans-serif;
    color: white;
    font-size: 27px;
}
.more-btn
{
    position: relative;
    font-family: 'Noto Sans', sans-serif;
    color: white;
    font-size: 27px;
    background-color: rgb(64,57,108);
    padding: 20px;
    border-radius: 20px;
}
#slide-1
{
    background-image: url('../img/index/slider/rekuperacja.jpeg');
}
#slide-2
{
    background-image: url('../img/index/slider/klima.jpeg');
}
#slide-3
{
    background-image: url('../img/index/slider/pompa.jpeg');
}
#slide-4
{
    background-image: url('../img/index/slider/fotowolt.png');
}
.slider-img
{
    min-width: 100%;
    height: 100%;
    opacity: 0.7;
}
::-webkit-scrollbar
{
    height: 0;
}
.dots-container
{
    position: absolute;
    top: 600px;
    left: 45%;
    width: 10%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 11;
}
.dot
{
    cursor: pointer;
    width: 13px;
    height: 13px;
    background-color: rgba(0,0,0,0);
    border: 2px solid grey;
    border-radius: 50px;
    transition: all 0.3s;
}
.dot:hover
{
    border: 2px solid white;
}
.dot-active
{
    cursor: default;
    border: 2px solid white;
    border-radius: 2px;
    transform: scale(1.1);
    background-color: white;
}
@media only screen and (max-width: 1100px)
{
    .slider-description-container
    {
        width: 65%;
    }
    .slider-content
    {
        font-size: 23px;
    }
}
@media only screen and (max-width: 900px)
{
    .dots-container
    {
        width: 15%;
    }
    .slider-description-container
    {
        width: 75%;
        right: 7%;
    }
    .slider-item
    {
        background-position: center;
    }

}
@media only screen and (max-width: 700px)
{
    .slider-content
    {
        font-size: 20px;
    }
    .dots-container
    {
        width: 30%;
        left: 35%;
    }
}