
/* Przechodzenie slajdów */
.slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    color: #fff;
    background-size: 100% 100%;
}

.slide.active { 
    opacity: 1; /* Slajd staje się widoczny */
}
        .content {
            display: flex;
            width: 90%;
            align-items: center;
            height: 100%;
        }

        .slide .text, .slide .image {
            width: auto;
            padding: 20px;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.5s, transform 0.5s;
        }


        .slide .text {
            margin-bottom: 5%;
        }


        .slide .image {

    padding: 0;
    height: 100%;
    display: flex
;
    align-items: flex-end;
}
        

        .active .text, .active .image {
            opacity: 1;
            transform: translateY(0);
        }


    





        .text h2 { font-size: 1.5rem; margin-bottom: 10px; }
        .text p { font-size: 1rem; }
        







.slide .image img {
    width: auto;
    max-height: 75vh;
    object-fit: contain;
 margin-bottom: 100px;
}



.slide1 .image img {
    width: auto;
    max-height: 75vh;
    object-fit: contain;
  margin-bottom: 100px;
}






.slide4 .image {
    margin-right: -5vw;
}


.imgleft {
    justify-content: flex-start;
}


.imgright {
    justify-content: flex-end;
}




.slide .content {
    position: relative;
}








.namebar {
    position: absolute;
    width: 5vw;
    height: 80%;
    top: 0;
    left: 0;
    background-color: white;
    display: flex
;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.rotated-text {
    transform: rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    color: #ce7eb3; /* kolor tekstu */
    font-weight: 400;
    font-size: 1.8rem;
  }



  .slide1 .namebar, .slide3 .namebar {
    left: auto;
    right: 0;
  }


  .slide1 .text, .slide3 .text {
    margin-right: 8vw;
}

.slide2 .text, .slide4 .text {
    margin-left: 8vw;
}





.slide1 .imgleft {
    margin-left: -5%;
}

.slide1 .imgright {

}


.slide1 .text {
    width: 60%;
    margin-right: 0;
}






.slide1 .rotated-text {
    color: #ce7eb3; /* kolor tekstu */
  }

  .slide2 .rotated-text {
    color: #d83662; /* kolor tekstu */
  }

  .slide3 .rotated-text {
    color: #e995bf; /* kolor tekstu */
  }

  .slide4 .rotated-text {
    color: #877eba; /* kolor tekstu */
  }








.emph {
    /* background: #fff; */
    /* color: #343e79; */
    /* padding: 1px 3px; */
    font-weight: 600;
}

.emphbold {
    background: #fff;
    color: #343e79;
    font-weight: 600;
    padding: 2px 7px;
    display: inline;
    margin-top: 20px;
    line-height: 1.5;
}

.startinfo {
    display: block;
    margin-bottom: -10px;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.9rem;
    left: 2px;
    letter-spacing: 3px;
    background: rgba(255, 255, 255, 0.1);
    width: fit-content;
    padding: 5px 19px;
}



        .navigation {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 15px;
            height: 15px;
            background-color: rgba(255,255,255,0.5);
            border-radius: 0%;
            cursor: pointer;
        }

        .dot.active {
            background-color: rgba(255,255,255,1);
        }

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 10px;
            border-radius: 5px;
            z-index: 100;
        }

        .arrow-left { left: 20px; }
        .arrow-right { right: 20px; }









        .countdown {
            display: flex
        ;
            gap: 15px;
            justify-content: flex-start;
            font-family: inherit;
            margin-top: 20px;
        }
        

        
        .time-box {
            background-color: rgba(255, 255, 255, 0.05);
            color: #fff;
            padding: 10px;
            border-radius: 0px;
            text-align: center;
            width: 80px;
            height: 80px;
            display: flex
        ;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }


        .time-box span {
            font-size: 24px;
            font-weight: bold;
            display: block;
            width: 100%;
        }

        .time-box p {
            margin: 0;
            font-size: 14px;
            margin-top: -10px;
        }

        .txtright .logohor {
            max-width: 70%;
            margin-left: -4px;
            margin-bottom: 20px;
        }


.slide .logohor {
    width: 100%;
    max-width: 420px;
    margin-left: -3px;
}


        .slide2 .text {
            position: relative;
        }


.slide2 .logover {

    max-width: 200px;
    margin-top: -30%;
}

        .slide3 .text {
            position: relative;
        }


        .slide4 .text {
            position: relative;
        }


.slide4 .logover {
    /* max-width: 200px; */
    position: absolute;
    right: 20vw;
    /* max-height: 25vh; */
    height: auto;
    top: 5%;
    height: 25vh;
}





        .slide2 .image img {
            margin-right: -3vw;
        }

        .slide3 .image img {
            margin-left: -2vw;
        }


.slide4 .image img {
    margin-right: 0;
    max-height: 55vh;
    margin-bottom: 100px;
}






    /* Animacja obrazu */
    .slide .image {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.5s, transform 0.5s;
    }
    
    .slide.active .image {
        opacity: 1;
        transform: translateY(0);
    }

    

    /* Animacja namebara */
.slide .namebar {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.5s, transform 0.5s;
}

.slide.active .namebar {
    opacity: 1;
    transform: translateY(0);
}

/* Animacja logo */
.slide .logohor, .slide .logover {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.5s 0.3s, transform 0.5s 0.3s; /* Opóźnienie */
}

.slide.active .logohor, .slide.active .logover {
    opacity: 1;
    transform: translateY(0);
}

/* Animacja tekstu */
.slide .text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s 0.6s, transform 0.5s 0.6s; /* Opóźnienie */
}

.slide.active .text {
    opacity: 1;
    transform: translateY(0);
}



/* Slajd 1 */
.slide1 .image {
    transform: translateY(100px); /* Obraz wchodzi z dołu */
}

.slide1 .namebar {
    transform: translateY(-50px); /* Namebar wchodzi z góry */
}

.slide1 .logohor {
    transform: translateY(-50px); /* Logo wchodzi z góry */
}

/* Pozostały content tekstowy */
.slide1 .text {
    transform: translateY(50px); /* Tekst pojawia się jak zwykle */
}





/* Slajd 2 */
.slide2 .image {
    transform: translateX(100px); /* Obraz wchodzi z prawej */
}

.slide2 .namebar {
    transform: translateY(50px); /* Namebar wchodzi z dołu */
}

.slide2 .logover {
    transform: translateY(50px); /* Logo wchodzi z dołu */
}

/* Pozostały content tekstowy */
.slide2 .text {
    transform: translateY(50px); /* Tekst pojawia się jak zwykle */
}


/* Slajd 3 */
.slide3 .image {
    transform: translateX(-100px); /* Obraz wchodzi z lewej */
}

.slide3 .namebar {
    transform: translateY(-50px); /* Namebar wchodzi z góry */
}

.slide3 .logover {
    transform: translateY(-50px); /* Logo wchodzi z góry */
}

/* Pozostały content tekstowy */
.slide3 .text {
    transform: translateY(50px); /* Tekst pojawia się jak zwykle */
}


/* Slajd 4 */
.slide4 .image {
    transform: translateX(100px); /* Obraz wchodzi z prawej */
}

.slide4 .namebar {
    transform: translateY(50px); /* Namebar wchodzi z dołu */
}

.slide4 .logover {
    transform: translateY(50px); /* Logo wchodzi z dołu */
}

/* Pozostały content tekstowy */
.slide4 .text {
    transform: translateY(50px); /* Tekst pojawia się jak zwykle */
}












@media only screen and (min-width: 1130px) and (max-height: 700px)  {


    section#banner {
    width: 100%;
    height: calc(100vh - 50px);
    margin-top: 100px;
}


.slide {
    height: calc(100vh - 50px);
}


.slide .image img {
    margin-bottom: 0px;
}

}










@media only screen and (min-width: 1920px)  {

.text p {
    font-size: 1.2rem
}


.text h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}


.desktop-menu ul li a {
    font-size: 1.1rem;
}




}





@media only screen and (max-width: 1450px)  {


}











@media only screen and (max-width: 1380px)  {


}




@media only screen and (max-width: 1290px)  {


}




@media only screen and (max-width: 1030px)  {

  .namebar {
    display: none;
  }


    .slide .content {
        position: relative;
        flex-wrap: wrap;
        justify-content: center;
    }

.slide .text {
width: 100%;
}


    section#banner {
        width: 100%;
        height: 1100px;
        margin-top: 100px;
    }


    .slide {
        height: 1100px;
    }


    .slide .image {
        padding: 0;
        height: 100%;
        display: flex
;
        align-items: flex-end;
        width: 50%;
        height: fit-content;
    }




  .slide1 .txtcenter {
        order: 1;
        width: 90%;
        margin-top: 150px;
    }

  .slide1 .imgleft {
    order: 2;
    width: 50%;
  }

  .slide1 .imgright {
    order: 3;
    width: 50%;
  }


    .slide1 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -100px;
        margin-top: -100px;
    }


    .slide1 .imgleft {
    margin-left: 0;
}







     .slide2 .logover {
        order: 1;
        width: 50%;
        margin-top: 150px;
        margin-left: 15%;
    }

  .slide2 .txtleft {
    order: 2;
    width: 90%;
  }

  .slide2 .imgright {
    order: 3;
    width: 50%;
        justify-self: flex-end;
        margin-right: 0;
        margin-left: auto;

  }


    .slide2 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: 0px;
        margin-top: -150px;
        height: auto;
    }


    .slide2 .text, .slide4 .text {
    margin-left: 0;
}




     .slide3 .txtright {
        order: 1;
        width: 90%;
        margin-top: 150px;
    }



.slide3 .imgleft {
        order: 2;
        width: 55%;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: -50px;
    }



      .slide3 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: 0px;
        margin-top: -150px;
        height: auto;
    }










    .slide4 .logover {
        /* max-width: 200px; */
        position: relative;
        order: 1;
        width: 50%;
        margin-top: 0px;
        margin-left: 15%;
        max-width: 200px;
        height: auto;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: 50px;
    }

  .slide4 .txtleft {
    order: 2;
    width: 90%;
  }

    .slide4 .imgright {
        order: 3;
        width: 80%;
        justify-self: flex-end;
        margin-right: -10%;
        margin-left: auto;
    }


    .slide4 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -10px;
        margin-top: 0px;
        height: auto;
    }

}








@media only screen and (max-width: 995px)  {


}





@media only screen and (max-width: 810px)  {



        .slide2 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: 0px;
        margin-top: -150px;
        height: auto;
        margin-right: -20%;
    }



    .slide3 .imgleft {
        order: 2;
        width: 70%;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: -50px;
    }


    .slide3 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -130px;
        margin-top: -130px;
        height: auto;
    }


}




@media only screen and (max-width: 780px)  {


}




@media only screen and (max-width: 650px)  {


}




@media only screen and (max-width: 610px)  {



        .slide1 .txtcenter {
        order: 1;
        width: 90%;
        margin-top: 50px;
    }



    .slide2 .logover {
        order: 1;
        width: 50%;
        margin-top: 100px;
        margin-left: 15%;
        max-width: 150px;
    }


    .slide2 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -150px;
        margin-top: -50px;
        height: auto;
        margin-right: -20%;
    }


        .slide3 .txtright {
        order: 1;
        width: 90%;
        margin-top: 50px;
    }


        .slide3 .imgleft {
        order: 2;
        width: 80%;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: -50px;
    }

        .slide3 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -130px;
        margin-top: -170px;
        height: auto;
    }



    .slide4 .logover {
        /* max-width: 200px; */
        position: relative;
        order: 1;
        width: 50%;
        margin-top: 0px;
        margin-left: 15%;
        max-width: 150px;
        height: auto;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: 50px;
    }


        .slide4 .imgright {
        order: 3;
        width: 100%;
        justify-self: flex-end;
        margin-right: -10%;
        margin-left: auto;
    }


        .slide4 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -30px;
        margin-top: 0px;
        height: auto;
    }



}




@media only screen and (max-width: 520px)  {



    header {
  height: 80px;

    }
  



.text h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}


.text p {
    font-size: 0.9rem;
}


    section#banner {
        width: 100%;
        height: 900px;
        margin-top: 80px;
    }


        .slide {
        height: 900px;
    }



    .startinfo {
        display: block;
        margin-bottom: -10px;
        margin-top: 5px;
        text-transform: uppercase;
        font-weight: 300;
        font-size: 0.77rem;
        left: 2px;
        letter-spacing: 3px;
        background: rgba(255, 255, 255, 0.1);
        width: fit-content;
        padding: 5px 19px;
    }



    .slide1 .txtcenter {
        order: 1;
        width: 95%;
          margin: auto;
        margin-top: 10px;
        position: absolute;
        top: 60px;
    }


.arrow-right {
    right: 3px;
}

.arrow-left {
    left: 3px;
}


    .slide1 .imgleft {
        order: 2;
        width: 70%;
        position: absolute;
        bottom: 0;
        left: -10%;
    }


    .slide1 .imgright {
        order: 3;
        width: 70%;
        position: absolute;
        bottom: 0;
        right: -10%;
    }


        .slide1 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -70px;
        margin-top: -100px;
    }






        .slide2 .logover {
        order: 1;
        width: 50%;
        margin-top: 50px;
        margin-left: 15%;
        max-width: 130px;
    }




    .slide2 .image img {
        width: 100%;
        /* max-height: 500px; */
        object-fit: contain;
        margin-bottom: -100px;
        margin-top: -50px;
        height: auto;
        margin-right: -20%;
    }



        .slide2 .txtleft {
        order: 2;
        width: 95%;
          margin: auto;
    }


 .slide3 .txtright {
        order: 1;
        width: 95%;
        margin: auto;
        margin-top: 10px;
        margin-top: 70px;
    }


        .slide4 .logover {
        /* max-width: 200px; */
        position: relative;
        order: 1;
        width: 50%;
        margin-top: 0px;
        margin-left: 15%;
        max-width: 130px;
        height: auto;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: 50px;
    }


        .slide4 .txtleft {
        order: 2;
        width: 95%;
          margin: auto;
          
    }
}


@media only screen and (max-width: 490px)  {


}





@media only screen and (max-width: 460px)  {


}




@media only screen and (max-width: 430px)  {


        section#banner {
        width: 100%;
        height: 850px;
        margin-top: 80px;
    }


        .slide {
        height: 850px;
    }



        .text h2 {
        font-size: 1rem;
        }

    .text p {
        font-size: 0.85rem;
    }


        .startinfo {
        font-size: 0.74rem;
        letter-spacing: 2px;
    }


        .slide2 .logover {
        order: 1;
        width: 50%;
        margin-top: 50px;
        margin-left: 15%;
        max-width: 100px;
    }


    .slide4 .logover {
        max-width: 100px;
    }
    

    .time-box span {
    font-size: 18px;
    font-weight: bold;
    display: block;
    width: 100%;
}


}



@media only screen and (max-width: 390px)  {


            section#banner {
        width: 100%;
        height: 820px;
        margin-top: 80px;
    }


        .slide {
        height: 820px;
    }


            .text h2 {
        font-size: 0.9rem;
        }

    .text p {
        font-size: 0.8rem;
    }


        .startinfo {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }



        .slide2 .logover {
        order: 1;
        width: 50%;
        margin-top: 50px;
        margin-left: 15%;
        max-width: 120px;
    }


        .slide3 .imgleft {
        order: 2;
        width: 100%;
        margin-right: 0;
        margin-left: auto;
        margin-bottom: -60px;
    }


    .slide4 .logover {
        max-width: 120px;
    }

}



@media only screen and (max-width: 370px)  {


}



@media only screen and (max-width: 330px)  {


}


#banner-live {
    position: relative;
    z-index: 5000;
}