@import url('https://fonts.googleapis.com/css2?family=Krub:wght@400;500;700&display=swap');


        /* Reset stylów */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            scroll-behavior: smooth;
            background-color: none;
            font-family: 'Krub', sans-serif;
            overflow: hidden;
        }


        a {
            text-decoration: none;
            color:#ffffff;
        }


        .upper_button::before {
            font-family: "Font Awesome 5 Free"; /* Ważne! Musisz ustawić odpowiednią czcionkę */
            content: '\f106'; /* Kod ikony */
            font-weight:bold; /* Niektóre czcionki wymagają "solid" */
            font-size: 30px;
        }

        .upper_button {
            position: fixed;
            bottom: 20px; 
            right: 90px;
            transform: translateX(-50%); 
            background-color: white; 
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 5px;
            border: 1px solid #c4c7c8;
            cursor: pointer;
            text-align: center;
            color: #4D4B4B;
            padding:10px;
            z-index: 1000; 
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
            visibility: hidden;
        }

        .upper_button.visible {
            padding:10px;
            opacity: 1;
            transform: translateY(0px);
            visibility: visible;
            color: #4D4B4B;
        }

        .upper_button.visible:hover {
            color: #873895;

        }

        /* Górna sekcja */
        .top-container {
            margin-top:-30px;
            width: 100%;
            height: 900px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            background-color: none;
            overflow: hidden;
            background-image: url('images/big_background.jpg'); 
            background-size: cover;
            background-position: center top;
            animation: moveBackground 2s ease-out 2s forwards;
        }
        
        /* Reset animacji po jej zakończeniu */
        .top-container::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: inherit;
            background-size: cover;
            background-position: center top;
            z-index: -1;
            animation: resetBackground 0.1s linear 4.5s forwards;
            display: none;
        }


        /* Element do animacji */
        .animated-box1 {
            width: 610px;
            height: 725px;
            position: absolute;
            top: -350px;
            right: -200px; /* Połowa elementu poza ekranem */
            animation: fallDown 1.5s ease-out forwards, fallRotate 2.5s ease-in-out 2s forwards;
        }


        @keyframes fallDown {
            from { top: -750px; }
            to { top: -350px; }
        }

        /* Warstwa pierwszej grafiki (zanika) */
        .animated-box1::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/vector_1.png');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 1;
            animation: fadeOutOldBackground 4s ease-in-out 1.5s forwards;
        }

        /* Warstwa drugiej grafiki (pojawia się po połowie drogi) */
        .animated-box1::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/vector_.png'); /* Zielony */
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0;
            animation: fadeInNewBackground 2s ease-in-out 1.5s forwards;
        }

        .animated-box2 {
            width: 610px;
            height: 725px;
            position: absolute;
            bottom: -750px;
            left: -550px; /* Połowa elementu poza ekranem */
            background-image: url('images/vector_.png'); /* Czerwony */
            background-size: contain;
            background-repeat: no-repeat;
            animation: comeinRotate 2s ease-in-out 2.5s forwards;
        }

        .animated-title_1 {
            top:260px;
            left:150px;
            width: 850px;
            height: 160px;
            font-size: 26px;
            color: #ffffff;
            text-align: left;
            font-weight: 600;
            position: absolute;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
            animation: slideInFromLeft 2s ease-out 0s forwards, moveUp 2s ease-in 2s forwards ;
        }


        .animated-title_2 {
            flex-direction: column;
            bottom:-430px;
            width: 1000px;
            height: 320px;
            font-size: 14px;
            color: #ffffff;
            text-align: center;
            font-weight: 500;
            position: absolute;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
            animation: moveUp2 2s ease-in 2s forwards;
        }


        .h2_title_2 {
            width: 100%;
            font-size: 48px;
            text-transform: uppercase;
            font-weight: 600;
            text-align: center;
            line-height: 1.2; /* Zapewnia poprawne odstępy */
            display: block; /* Zapewnia, że całość traktowana jest jako jeden blok */
        }
        
        .h2_title_2 span {
            display: inline; /* Zapewnia, że `span` pozostaje w tej samej linii */
            white-space: nowrap; /* Zapobiega przełamaniu w `span`, ale pozwala na łamanie w innych miejscach */
            color: #EE509C;
        }
        


        .landing_button_container {
            display: flex;
            gap: 20px;
            line-height: 1.5;
            text-align: center;
            justify-content: center;
            position: relative;
            margin-top: 30px;
            background-color: none;
        }
        

        .landing_baner_button {
            display: flex;
            line-height: 1.5;
            text-align: center;
            justify-content: center;
            position: relative;
            padding: 15px;
            width: 200px;
            height: 55px;
            font-size: 16px;
            border: 2px solid #ffffff;
            border-radius:20px;
            font-weight: 700;
            text-decoration: none;
            transition: color 0.5s ease, border-color 0.5s ease, background-color 0.5s ease;
            background-color: none;
        }

        .landing_baner_button:hover {
            color: #ffffff;
            border: 2px solid #EE509C;
            background-color: #EE509C;
        }


        .second-container {
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: column;
            width: 100%;
            height: 900px;
            justify-content: center;
            align-items: center;
            background-color: #EEEEEE;
            overflow: hidden;
            z-index: 2;
        }

        .second-container-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: row;
            width: 1536px;
            height: 658px;
            background-color: none;
            overflow: hidden;
            z-index: 2;
            gap:48px;
        }


        /* Sekcja 2 - struktura i animacje */

        .second-box1 {
            width: 480px;
            height: 658px;
            background-color: #ffffff;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }

        .s_box1_img {
            width:480px;
            height:480px;
            background-image: url('images/b2_img.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            margin-bottom: 40px;
        }

        .s_box2_img {
            width:480px;
            height:480px;
            background-image: url('images/b2_img_1.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            margin-bottom: 40px;
        }
        
        .s_box3_img {
            width:480px;
            height:480px;
            background-image: url('images/b2_img_2.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            margin-bottom: 40px;
        }
        
        
        .s_box_h2 {
            padding-bottom:16px;
            font-size: 24px;
            font-weight: bold;
        }

        .s_box_txt {
            padding-bottom:16px;
            font-size: 16px;
            padding: 0 20px 0 20px ;
        }

        .second-box2 {
            width: 480px;
            height: 658px;
            background-color: #ffffff;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }

        .second-box3 {
            width: 480px;
            height: 658px;
            background-color: #ffffff;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }

        
        /* Dodajemy transform do transition */
        .second-box1 { transition: bottom 1s ease-in-out; }
        .second-box2 { transition: bottom 1s ease-in-out; }
        .second-box3 { transition: bottom 1s ease-in-out; }
        
        /* Efekty po dodaniu klasy .active */
        .active .second-box1 { transition-delay: 0s; }
        .active .second-box2 { transition-delay: 0.3s; }
        .active .second-box3 { transition-delay: 0.6s; }


        
        .third-container {
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: column;
            width: 100%;
            height: 900px;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .third-container-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: row;
            width: 1536px;
            height: 600px;
            background-color: none;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
            gap:48px;
        }

        .slider-container {
            width: 1536px;
            height: 600px;
            overflow: hidden;
            position: relative;
            background-color: #EEEEEE;
            border-radius: 25px;
        }
        
        .slider {
            display: flex;
            width: 500%; /* 5 slidów */
            height: 600px;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            width: 1536px;
            height: 600px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            padding: 0 0px;
            border: 0px solid red;
            background-color: none;
        }
        
        .slide-content {
            margin-top: -200px;;
            max-width: 463px;
            height: auto;
            color: #4D4B4B;
            margin-left: 40px;
            border: 0px solid #adc718;
            text-align: left;
        }
        
        .slide-content h2 {
            margin: 0;
            font-size: 28px;
            color: #873895;
            text-transform: uppercase;
        }

        .slide-content h3 {
            margin: 0;
            font-size: 28px;
            color: #4D4B4B;
            text-transform: uppercase;
        }
        
        .slide-content p {
            margin-top: 24px;
            font-size: 20px;
        }

        .slide_1 {
            width: 1017px;
            height: 600px;
            background-image: url('images/slide_1.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .slide_2 {
            width: 1017px;
            height: 600px;
            background-image: url('images/slide_2.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }
        
        .slide_3 {
            width: 1017px;
            height: 600px;
            background-image: url('images/slide_3.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .slide_4 {
            width: 1017px;
            height: 600px;
            background-image: url('images/slide_4.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .slide_5 {
            width: 1017px;
            height: 600px;
            background-image: url('images/slide_5.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }


        /* Nawigacja i strzałki */
        .navigation-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
            bottom:80px;
            left:40px;
        }
        
        .arrow {
            width: 40px;
            height: 40px;
            background-color: #873895;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            user-select: none;
            color: #ffffff;
        }
        
        .arrow:hover {
            background-color: #873895;
            color: white;
        }
        
        .nav-dots {
            display: flex;
            gap: 10px;
        }
        
        .nav-dot {
            width: 13px;
            height: 13px;
            background-color: none;
            border-radius: 50%;
            border: 2px solid #873895; 
            cursor: pointer;
        }
        
        .nav-dot.active {
            background-color: #873895;
        }


        .fourth-container {
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: column;
            width: 100%;
            height: 900px;
            background-color: #EEEEEE;
            color:#4D4B4B;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .fourth-container-inner {
            display: flex;
            width: 1276px;
            height: 600px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }

        .fourth-container-inner_h2 {
            font-size: 48px;
            margin-bottom:40px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .fourth-container-inner_h2 span {
            color:#873895;
        }

        .nine-container-inner_h2 {
            font-size: 48px;
            margin-bottom:40px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .nine-container-inner_h2 span {
            color:#873895;
        }

        .fourth-container-inner {
            transition: bottom 1s ease-in-out;
        }

        .active .fourth-container-inner {
            transition-delay: 0s;
        }


        /* Animacje - domyślnie niewidoczne */
        .animate_4 {
            opacity: 1;
            transform: translateY(800px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Aktywacja animacji */
        .active .animate_4 {
            opacity: 1;
            transform: translateY(0);
        }

        .fourth-container-inner_positioner {
            display: flex;
            width: 1276px;
            height: 600px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            gap:89px;
        }

        .fourth-container-box1 {
            width: 366px;
            height: 494px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
            border-radius: 0px;
        }

        .fourth-container-box1 h2 {
            font-size: 16px;
            padding-top: 40px;
            font-weight: normal;
        }

        .fourth_box_img1 {
            width: 366px;
            height: 248px;
            background-image: url('images/gniazda_1.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .fourth_box_img2 {
            width: 366px;
            height: 248px;
            background-image: url('images/gniazda_2.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .fourth_box_img3 {
            width: 366px;
            height: 248px;
            background-image: url('images/gniazda_3.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .fourth-container-box2 {
            width: 366px;
            height: 494px;
            background-color: none;
            border-radius: 0px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }

        .fourth-container-box2 h2 {
            font-size: 16px;
            padding-top: 40px;
            font-weight: normal;
        }

        .fourth-container-box3 {
            width: 366px;
            height: 494px;
            background-color: none;
            border-radius: 0px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }

        .fourth-container-box3 h2 {
            font-size: 16px;
            padding-top: 40px;
            font-weight: normal;
        }

        .baner_button {
            display: flex;
            line-height: 1.5;
            text-align: center;
            justify-content: center;
            position: relative;
            padding: 15px;
            width: 200px;
            height: 55px;
            font-size: 16px;
            color: #873895;
            border: 2px solid #873895;
            background-color: none;
            border-radius:20px;
            font-weight: 700;
            text-decoration: none;
            transition: color 0.5s ease, border-color 0.5s ease, background-color 0.5s ease;
            background-color: none;
        }

        .baner_button:hover {
            color:#ffffff;
            border: 2px solid #873895;
            background-color: #873895;
        }



        .fifth-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: row;
            width: 100%;
            height: 900px;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .fifth-container-inner {
            display: flex;
            width: 1535px;
            height: 600px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }

        .fifth-container-inner_top {
            display: flex;
            width:1535px;
            height: 30px;
            font-weight: bold;
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 20px;
            background-color: none;
        }

        .fifth-container-inner_top_left {
            font-size: 28px;
            font-weight: bold;
            text-align: left;
            text-transform: uppercase;
            margin-left: 20px;
        }

        .fifth-container-inner_top_right {
            font-size: 14px;
            font-weight:normal;
            text-align: right;
        }

        .fifth-container-inner_top_right a {
            font-size: 14px;
            font-weight: normal;
            text-align: right;
            color: #4D4B4B;
        }

        .fifth-container-inner_top_right a:hover {
            font-size: 14px;
            font-weight: normal;
            text-align: right;
            color: #363535;
        }

        .fifth-container-inner_bottom {
            display: flex;
            width:1535px;
            height: 550px;
            font-size: 16px;
            background-color: none;
            flex-direction: row;
            justify-content: space-between;
        }

        .fifth_small_box1 {
            display: flex;
            flex-direction: column; /* Ustawienie elementów pionowo */
            align-items: center; /* Wyśrodkowanie w poziomie */
            justify-content: center; /* Wyśrodkowanie w pionie */
            width: 374px;
            height: 463px;
            background-color: none;
            font-size: 16px;
            border-radius: 25px;
            border: 1px solid #E1E1E1;
            overflow: hidden;
            position: relative;
            transition: background-color 0.5s ease;
        }

        .fifth_small_box1:hover {
            background-color: #EEEEEE;
        }

        .fifth_small_box2 {
            display: flex;
            flex-direction: column; /* Ustawienie elementów pionowo */
            align-items: center; /* Wyśrodkowanie w poziomie */
            justify-content: center; /* Wyśrodkowanie w pionie */
            width: 374px;
            height: 463px;
            background-color: none;
            font-size: 16px;
            border-radius: 25px;
            border: 1px solid #E1E1E1;
            overflow: hidden;
            position: relative;
            transition: background-color 0.5s ease;
        }

        .fifth_small_box2:hover {
            background-color: #EEEEEE;
        }

        .fifth_small_box3 {
            display: flex;
            flex-direction: column; /* Ustawienie elementów pionowo */
            align-items: center; /* Wyśrodkowanie w poziomie */
            justify-content: center; /* Wyśrodkowanie w pionie */
            width: 374px;
            height: 463px;
            background-color: none;
            font-size: 16px;
            border-radius: 25px;
            border: 1px solid #E1E1E1;
            overflow: hidden;
            position: relative;
            transition: background-color 0.5s ease;
        }

        .fifth_small_box3:hover {
            background-color: #EEEEEE;
        }

        .fifth_small_box4 {
            display: flex;
            flex-direction: column; /* Ustawienie elementów pionowo */
            align-items: center; /* Wyśrodkowanie w poziomie */
            justify-content: center; /* Wyśrodkowanie w pionie */
            width: 374px;
            height: 463px;
            background-color: none;
            font-size: 16px;
            border-radius: 25px;
            border: 1px solid #E1E1E1;
            overflow: hidden;
            position: relative;
            transition: background-color 0.5s ease;
        }

        .fifth_small_box4:hover {
            background-color: #EEEEEE;
        }



        .small_box_image1 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-1.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }

        .small_box_image2 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-2.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }

        .small_box_image3 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-3.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }
        
        .small_box_image4 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-4.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }


        .small_box_image5 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-5.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }

        .small_box_image6 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-6.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }

        .small_box_image7 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-7.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }

        .small_box_image8 {
            margin-top:-30px;
            display: flex;
            justify-content: center;
            align-items: center; 
            height: 265px;
            width: 265px;
            background-image: url('images/product/product-8.png');
            background-size: cover;
            text-align: center;
            position: relative;
            background-color: none; 
        }



        .small_box_txt {
            margin-top: 40px;
            display: flex;
            align-items: center; 
            justify-content: center; 
            width: 300px;
            height: 40px;
            text-align: left;
            color: #4D4B4B;
        }



        .small_box_txt_h2 {
            margin-top: 10px;
            display: flex;
            width: 300px;
            height: auto;
            text-align: left;
            font-weight: bold;
            font-size: 20px;
            flex-direction: column;
        }


        .small_box_txt_h2_top {
            display: flex;
            width: 300px;
            height: auto;
            flex-direction: row;
            justify-content: space-between; 
        }

        .small_box_txt_h2_bot {
            display: flex;
            width: 300px;
            height: auto;
            flex-direction: row;
            justify-content: space-between; 
            margin-top: 5px;
        }

        .small_box_txt_h2_left {
            font-size: 20px;
            font-weight: bold;
            text-align: left;
            color: #873895;
        }

        .small_box_txt_h2_right {
            font-size: 16px;
            font-weight: bold;
            text-align: right;
            text-decoration: line-through;
        }

        .small_box_txt_h2_left2 {
            font-size: 12px;
            font-weight: normal;
            text-align: left;
        }

        .small_box_txt_h2_right2 {
            font-size: 12px;
            font-weight:normal;
            text-align: right;
        }

        .six-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: row;
            width: 100%;
            height: 900px;
            justify-content: center;
            align-items: center;
            background-color: #EEEEEE;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .six-container-inner {
            display: flex;
            width: 1535px;
            height: 640px;
            color:#EEEEEE;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            gap:20px
        }

        .six-container-inner-box-left {
            display: flex;
            width: 887px;
            height: 640px;
            color:#4D4B4B;
            background-image: url('images/offer.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            border-radius: 25px 25px 25px 25px;
            position: relative;
            overflow: hidden;
        }

        .six-container-inner-box-right {
            margin-top:20px;
            display: flex;
            width: 500px;
            height: 640px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            margin-left: 60px;
        }

        .six-container-inner-box-top {
            display: flex;
            width: 500px;
            height: 230px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            text-align: left;
        }


        .offer-section {
            max-width: 500px;
            height: 230px;
        }
        
        .offer-section h2 {
            font-size: 36px;
            font-weight: bold;
            line-height: 1.3;
        }
        
        .offer-section h2 span {
            color: #4D4B4B; /* Standardowy kolor */
        }
        
        .offer-section h2 .highlight {
            color: #873895; /* Fioletowy kolor */
        }
        
        .offer-section p {
            font-size: 16px;
            line-height: 1.5;
            margin-top: 10px;
        }
        
        .landing_button_container_6 {
            display: flex;
            line-height: 1.5;
            position: relative;
            background-color: none;
            margin:36px 0 26px 0;
        }
        

        .baner_button_6 {
            display: flex;
            line-height: 1.5;
            position: relative;
            padding: 15px;
            width: 210px;
            height: 55px;
            font-size: 16px;
            color: #873895;
            border: 2px solid #873895;
            background-color: none;
            border-radius:20px;
            font-weight: 700;
            text-decoration: none;
            transition: color 0.5s ease, border-color 0.5s ease, background-color 0.5s ease;
            background-color: none;
        }

        .baner_button_6:hover {
            color:#ffffff;
            border: 2px solid #873895;
            background-color: #873895;
        }


        .six-container-inner-box-bot {
            display: flex;
            width: 500px;
            height: 250px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            text-align: left;
        }

        .reviews-section {
            max-width: 500px;
            margin-top: 0px;
        }
        
        .review {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review img {
            width: 72px;
            height: 72px;
            border-radius: 5px;
            margin-right: 15px;
        }
        
        .review-content {
            display: flex;
            flex-direction: column;
        }
        
        .stars {
            font-size: 20px;
            color: #F6C000;
        }
        
        .review p {
            font-size: 14px;
            line-height: 1.4;
            margin-top: 5px;
        }
        

        .animate_6-1 {
            opacity: 1;
            transform: translateX(-900px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }


        .active .animate_6-1 {
            opacity: 1;
            transform: translateX(0);
        }

        .animate_6-2 {
            opacity: 1;
            transform: translateY(900px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }


        .active .animate_6-2 {
            opacity: 1;
            transform: translateY(0);
        }


        .seventh-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: row;
            width: 100%;
            height: 900px;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .seventh-container-inner {
            display: flex;
            width: 1535px;
            height: 600px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
        }


        .feature-box {
            max-width: 550px;
            height: 600px;
            margin-right: 30px;
            text-align: left;
            color: #4D4B4B;
        }
        
        .feature-box h2 {
            margin-top:10px;
            font-size: 36px;
            font-weight: bold;
            padding-bottom: 24px;
        }
        
        .feature-box h2 span {
            color: #873895;
        }
        
        .feature-box p {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .feature-box ul {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }
        
        .feature-box ul li {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }
        
        .feature-box ul li::before {
            content: "•";
            font-size: 20px;
            position: absolute;
            left: 0;
            top: 0;
        }


        .baner_button_7 {
            margin-top: 64px;
            display: flex;
            line-height: 1.5;
            position: relative;
            padding: 15px;
            width: 160px;
            height: 55px;
            font-size: 16px;
            color: #873895;
            border: 2px solid #873895;
            background-color: none;
            border-radius:20px;
            font-weight: 700;
            text-decoration: none;
            transition: color 0.5s ease, border-color 0.5s ease, background-color 0.5s ease;
            background-color: none;
        }

        .baner_button_7:hover {
            color:#ffffff;
            border: 2px solid #873895;
            background-color: #873895;
        }

        .grid {
            display: flex;
            flex-wrap: wrap;
            width: 955px;
            height: 600px;
            background-color: none;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .grid-item-container-top {
            display: flex;
            width: 887px;
            flex-direction: row;
            height: 230px;
            gap: 30px;
            margin-left:40px;
            margin-top:-50px;
        }

        .grid-item {
            width: 200px;
            height: 230px;
            display: flex;
            overflow: hidden;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
        }
        
        .grid-item-img1 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port1.png');
            background-size: cover;
        }

        .grid-item-img2 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port2.png');
            background-size: cover;
        }

        .grid-item-img3 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port3.png');
            background-size: cover;
        }

        .grid-item-img4 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port4.png');
            background-size: cover;
        }

        .grid-item-img5 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port5.png');
            background-size: cover;
        }


        .grid-item-img6 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port6.png');
            background-size: cover;
        }

        .grid-item-img7 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port7.png');
            background-size: cover;
        }

        .grid-item-img8 {
            display: flex;
            width: 200px;
            height: 200px;
            background-image: url('images/features/port8.png');
            background-size: cover;
        }

        .grid-item-span {
            width: 200px;
            height: 20px;
            font-size: 16px;
            margin-top: 10px;
            color: #4D4B4B;
            font-weight:600;
        }

        .grid-item-container-bot {
            display: flex;
            width: 887px;
            flex-direction: row;
            height: 220px;
            gap: 30px;
            margin-left:40px;
            margin-top:-80px;
        }

        .grid-item-bot {
            width: 200px;
            height: 260px;
            display: flex;
            overflow: hidden;
            align-items: center;
            justify-content: center;
            text-align: center;
            flex-direction: column;
        }

        .grid-item-span-bot {
            width: 200px;
            height: 40px;
            font-size: 16px;
            margin-top: 10px;
            color: #4D4B4B;
            font-weight:600;
        }


        .animate_7-1 {
            opacity: 1;
            transform: translateX(-900px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }


        .active .animate_7-1 {
            opacity: 1;
            transform: translateX(0);
        }

        .animate_7-2 {
            opacity: 1;
            transform: translateX(1100px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }


        .active .animate_7-2 {
            opacity: 1;
            transform: translateX(0);
        }

        .eighth-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: column;
            width: 100%;
            height: 800px;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .eighth-container-inner {
            display: flex;
            width: 1535px;
            height: 40px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
        }

        .eighth-container-inner2 {
            margin-top:40px;
            display: flex;
            width: 100%;
            height: 554px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }

        .carusel {
            width:1535px;
            height:554px;
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap:20px;
        }

        .wagon {
            min-width: 369px;
            height: 554px;
            background: #f86161;
            border-radius: 10px;
            overflow: hidden;
            background-size: 100%;
        }

        .carusel-menu {
            display: flex;
            width: 1535px;
            height: 40px; /* Powiększamy, żeby przyciski nie były zasłonięte */
            position: absolute; /* Zapewnia poprawne pozycjonowanie */
            align-items: center;
            z-index: 5; /* Na wierzchu */
            justify-content: space-between; 
            background: none; /* Opcjonalnie, jeśli gradient je zasłania */
        }

        .fifth-container-inner_top_carusel_right {
            height:40px;
            width:100px;
            background-color: none;
            text-align: right;
        }


        .control-btn {
            position: absolute; /* Teraz pozycjonowanie w ramach `carusel-menu` */
            width: 40px;
            height: 40px;
            background: #7a1b86;
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 6; /* Nad gradientami */
        }

        #prev-arrow_carusel {
            margin:0px;
        }
        
        #next-arrow_carusel {
            right:0px;
            margin:0px;
        }
        

        .nine-container-inner {
            display: flex;
            width: 1535px;
            height: 600px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }



        .nine-container-inner_positioner {
            margin-top:100px;
            display: flex;
            width: 1535px;
            height: 500px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            justify-content: space-between;
        }

        .nine-container-box1 {
            width: 342px;
            height: 494px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
            border-radius: 1px;
        }

        .nine_box_img1 {
            width: 342px;
            height: 248px;
            background-image: url('images/gniazda/gniazda1.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .nine_box_img2 {
            width: 342px;
            height: 248px;
            background-image: url('images/gniazda/gniazda2.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .nine_box_img3 {
            width: 342px;
            height: 248px;
            background-image: url('images/gniazda/gniazda3.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .nine_box_img4 {
            width: 342px;
            height: 248px;
            background-image: url('images/gniazda/gniazda4.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .nine-container-box2 {
            width: 342px;
            height: 494px;
            background-color: none;
            border-radius: 0px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }

        .nine-container-box3 {
            width: 342px;
            height: 494px;
            background-color: none;
            border-radius: 0px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }

        .nine-container-box4 {
            width: 342px;
            height: 494px;
            background-color: none;
            border-radius: 0px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
        }



        .eleventh-container-inner {
            display: flex;
            width: 1535px;
            height: 600px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
        }



        .eleventh-container-inner_positioner {
            margin-top:100px;
            display: flex;
            width: 1535px;
            height: 500px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            justify-content: space-between;
        }

        .eleventh-container-box1, 
        .eleventh-container-box2, 
        .eleventh-container-box3, 
        .eleventh-container-box4 {
            width: 369px;
            height: 330px;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            color: #4D4B4B;
            background-color: #ffffff;
            border-radius: 25px;
        }


        .eleventh-container-box1 img {
            margin-top: 50px;
            width: 100px;
            height: 100px;
        }
        
        .eleventh-container-box1 h3 {
            font-size: 20px;
            margin-top: 20px;
            font-weight: bold;
        }
        
        .eleventh-container-box1 p {
            font-size: 16px;
            padding: 30px;
        }

        .eleventh-container-box2 img {
            margin-top: 50px;
            width: 100px;
            height: 100px;
        }
        
        .eleventh-container-box2 h3 {
            font-size: 20px;
            margin-top: 20px;
            font-weight: bold;
        }
        
        .eleventh-container-box2 p {
            font-size: 16px;
            padding: 30px;
        }

        .eleventh-container-box3 img {
            margin-top: 50px;
            width: 100px;
            height: 100px;
        }
        
        .eleventh-container-box3 h3 {
            font-size: 20px;
            margin-top: 20px;
            font-weight: bold;
        }
        
        .eleventh-container-box3 p {
            font-size: 16px;
            padding: 30px;
        }

        .eleventh-container-box4 img {
            margin-top: 50px;
            width: 100px;
            height: 100px;
        }
        
        .eleventh-container-box4 h3 {
            font-size: 20px;
            margin-top: 20px;
            font-weight: bold;
        }
        
        .eleventh-container-box4 p {
            font-size: 16px;
            padding: 30px;
        }

        /* Dodajemy transform do transition */
        .eleventh-container-box1 { transition: bottom 1s ease-in-out; }
        .eleventh-container-box2 { transition: bottom 1s ease-in-out; }
        .eleventh-container-box3 { transition: bottom 1s ease-in-out; }
        .eleventh-container-box4 { transition: bottom 1s ease-in-out; }
        
        /* Efekty po dodaniu klasy .active */
        .active .eleventh-container-box1 { transition-delay: 0s; }
        .active .eleventh-container-box2 { transition-delay: 0.3s; }
        .active .eleventh-container-box3 { transition-delay: 0.6s; }
        .active .eleventh-container-box4 { transition-delay: 0.9s; }
        
        
        .vector_1 {
            width:610px;
            height:725px;
            z-index: -1;
            background-image: url('images/vector_.png');
            background-repeat: no-repeat;
            position: absolute;
            top: -180px;
            left: -100px; 
        }

        .active .vector_1 { transition-delay: 1s; }

        .vector_2 {
            width:610px;
            height:725px;
            z-index: -1;
            background-image: url('images/vector_.png');
            background-repeat: no-repeat;
            position: absolute;
            bottom: -80px;
            right: -100px; 
        }

        .active .vector_2 { transition-delay: 1s; }


        .animate11 {
            opacity: 0;
            transform: translateX(-658px) translateY(-725px) rotate(-60deg);
            transition: opacity 1s ease-out, transform 1.5s ease-out;
        }

        .active .animate11 {
            opacity: 1;
            transform: translateX(0) translateY(0) rotate(0deg);
        }

        .animate11_2 {
            opacity: 0;
            transform: translateX(658px) translateY(725px) scaleY(-1) scaleX(-1) rotate(55deg);
            transition: opacity 1s ease-out, transform 1.5s ease-out;
        }

        .active .animate11_2 {
            opacity: 1;
            transform: translateX(0) translateY(0) scaleY(-1) scaleX(-1) rotate(115deg);
        }

        .twelfth-container-inner {
            display: flex;
            width: 1535px;
            height: 900px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;

        }

        
        .thirteenth-container {
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: column;
            width: 100%;
            height: 1000px;
            justify-content: center;
            align-items: center;
            background-color: #EEEEEE;
            color:#4D4B4B;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }


        .thirteenth-container-inner {
            display: flex;
            width: 1535px;
            height: 900px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }


        .thirteenth-container-inner_positioner {
            display: flex;
            width: 710px;
            height: 620px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            justify-content: space-between;
        }


        .thirteenth-container-inner_h2 {
            font-size: 48px;
            margin-top: 0px;
            margin-bottom: 20px;
            font-weight: bold;
            text-transform: uppercase;
            background-color: none;
        }

        .thirteenth-container-inner_h2 span {
            color:#873895;
        }

        .thirteen-left {
            display: flex;
            position: relative;
            width:42px;
            background-color: none;
            height: 530px;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .thirteen-left-line {
            position: relative;
            width: 3px;
            height: 490px;
            border-left: 5px dashed #4D4B4B;
            z-index: 0;
        }

        .thirteen-left-number1 {
            position: absolute;
            width: 42px;
            height: 42px;
            background-color: #873895;
            border-radius: 50%;
            color:#FFFFFF;
            z-index: 1;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 5px;
            font-weight: bold;
            font-size: 24px;
            top:0px;
        }

        .thirteen-left-number2 {
            position: absolute;
            width: 42px;
            height: 42px;
            background-color: #873895;
            border-radius: 50%;
            color:#FFFFFF;
            z-index: 1;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 5px;
            font-weight: bold;
            font-size: 24px;
            top: 30%;
        }

        .thirteen-left-number3 {
            position: absolute;
            width: 42px;
            height: 42px;
            background-color: #873895;
            border-radius: 50%;
            color:#FFFFFF;
            z-index: 1;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 5px;
            font-weight: bold;
            font-size: 24px;
            bottom: 34%;
        }

        .thirteen-left-number4 {
            position: absolute;
            width: 42px;
            height: 42px;
            background-color: #873895;
            border-radius: 50%;
            color:#FFFFFF;
            z-index: 1;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 5px;
            font-weight: bold;
            font-size: 24px;
            bottom: 20px;
        }



        .thirteen-right {
            display: flex;
            position: relative;
            width:650px;
            height: 600px;
            background-color: none;
            flex-direction: column;
            gap:25px;
        }

        .thirteen-right-box1 {
            display: flex;
            position: relative;
            text-align: left;
            font-size: 20px;
            width: 600px;
            height: 150px;
            background-color: none;
            flex-direction: column;
        }

        .thirteen-right-box_h2 {
            display: flex;
            position: relative;
            font-size: 20px;
            font-weight: bold;
        }

        .thirteen-right-box_p {
            padding-top:10px;
            display: flex;
            position: relative;
            font-size: 16px;
            font-weight: normal;
        }

        .thirteen-right-box2 {
            display: flex;
            position: relative;
            text-align: left;
            width: 600px;
            height: 150px;
            background-color: none;
            margin-top:0px;
            flex-direction: column;
        }

        .thirteen-right-box3 {
            display: flex;
            position: relative;
            text-align: left;
            width: 600px;
            height: 150px;
            background-color: none;
            margin-top:0px;
            flex-direction: column;
        }

        .thirteen-right-box4 {
            display: flex;
            position: relative;
            text-align: left;
            width: 600px;
            height: 150px;
            background-color: none;
            margin-top:0px;
            flex-direction: column;
        }

        .thirteen_button_container {
            margin-top: -30px;
            display: flex;
            line-height: 1.5;
            text-align: center;
            justify-content: center;
            position: relative;
            background-color: none;
        }

        
        .animate-h2 {
            opacity: 0;
            transform: translateY(100px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .active .animate-h2 {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-l {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .active .animate-l {
            opacity: 1;
            transform: translateY(0);
        }

        .active .thirteen-left { transition-delay: 0.6s; }

        .animate-r-box {
            opacity: 0;
            transform: translateX(700px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .active .animate-r-box {
            opacity: 1;
            transform: translateY(0);
        }

        .active .thirteen-right-box1 { transition-delay: 0.8s; }
        .active .thirteen-right-box2 { transition-delay: 1s; }
        .active .thirteen-right-box3 { transition-delay: 1.2s; }
        .active .thirteen-right-box4 { transition-delay: 1.4s; }


        .fourteen-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: row;
            width: 100%;
            height: 850px;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .fourteen-container-inner {
            display: flex;
            width: 1535px;
            height: 600px;
            color:#4D4B4B;
            background-color: #EEEEEE;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            border-radius: 25px;
            justify-content: space-between;
        }

        .fourteen-container-inner-img {
            display: flex;
            width: 500px;
            height: 600px;
            overflow: hidden;
        }

        .fourteen-container-img {
            margin-left:-50px;
            width: 550px;
            height: 600px;
            background-image: url('images/contact.jpg'); /* Zmień na swoją grafikę */
            background-size: cover;
            background-color: #873895; /* Różowy kolor */
        }

        .animate-img-14 {
            opacity: 1;
            transform: translateX(50px);
            transition: opacity 2s ease-out, transform 2.5s ease-out;
        }

        .active .animate-img-14 {
            opacity: 1;
            transform: translateX(0px);
        }


        .fourteen-container-inner-txt {
            display: flex;
            width: 1000px;
            height: 600px;
            background-color: none;
            flex-direction: column;
            text-align: left;
            display: inline; 
            font-size: 20px;
        }

        .fourteen-container-txt-h2 {
            font-size: 48px;
            margin-top: 30px;
            margin-bottom: 10px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .fourteen-container-txt-h2 h2 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 26px;
        }

        .fourteen-container-txt-h2 p {
            margin-bottom: 26px;
        }

        .fourteen-container-txt-h2 span {
            color:#873895;
        }

        .fourteen-container-txt-hr {
            border-bottom: 1px solid #873895;
            width: 900px;
            margin: 20px 0px 20px 0px;
        }


        .fiftheen-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            width: 100%;
            height: 650px;
            justify-content: center;
            background-color: #ffffff;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }

        .fiftheen-container-inner {
            display: flex;
            width: 1535px;
            height: 520px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            font-size: 16px;
            justify-content: space-between;
        }

        .fiftheen-container-txt {
            display: flex;
            width: 100%;
            height: 100px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: column;
            text-align: left;
        }

        .fiftheen-container-txt-h2 {
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .fiftheen-container-box {
            display: flex;
            width: 100%;
            height: 423px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            flex-direction: column;
            gap: 20px;
        }

        .fiftheen-container-box-top {
            display: flex;
            width: 100%;
            height: 211px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            flex-direction: row;
            justify-content: space-between;

        }
        .fiftheen-container-box-bot {
            display: flex;
            width: 100%;
            height: 211px;
            color:#4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            flex-direction: row;
            justify-content: space-between;

        }

        .fiftheen-box {
            display: flex;
            width: 492px;
            height: 200px;
            color:#4D4B4B;
            background-color: #EEEEEE;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            flex-direction: row;            
            justify-content: center;
            align-items: center;
            text-align: left;
            font-size: 24px;
            gap: 20px;
        }

        .fiftheen-box1 {
            display: flex;
            width: 492px;
            height: 200px;
            color:#4D4B4B;
            background-color: #EEEEEE;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            flex-direction: row;            
            justify-content: center;
            align-items: center;
            text-align: left;
            font-size: 24px;
            justify-content: center;
        }

        .fiftheen-box-img1 {
            display: flex;
            width: 98px;
            height: 98px;
            background-color: none;
        }

        .fiftheen-box-img2 {
            display: flex;
            width: 98px;
            height: 98px;
            background-color: none;
            margin-left:-130px;
            margin-right: 20px;
        }



        .footer-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            width: 100%;
            justify-content: center;
            align-items: center;
            background-color: #000;
            overflow: hidden; /* Ukrywa element */
            z-index: 2;
        }


        .footer-container-inner {
            margin-top: 50px;
            display: flex;
            width: 1535px;
            height: 350px;
            color: #E1E1E1;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            font-size: 16px;
            justify-content: space-between;
        }

        
        .footer-column {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        
        .footer-column h3 {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column ul li {
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .footer-column ul li a {
            text-decoration: none;
            color: white;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #ccc;
        }



        .footer-column1 {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        
        .footer-column1 h3 {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .footer-column1 ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column1 ul li {
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .footer-column1 ul li a {
            text-decoration: none;
            color: white;
            transition: color 0.3s;
        }
        
        .footer-column1 ul li a:hover {
            color: #ccc;
        }


        .footer-contact {
            display: flex;
            flex-direction: column;
            font-size: 12px;
        }
        
        .footer-contact p {
            font-size: 13px;
            margin: 5px 0;
        }
        
        .footer-contact a {
            text-decoration: none;
            color: white;
            font-weight: bold;
        }
        
        .footer-contact a:hover {
            color: #ccc;
        }
        
        .footer-icons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .footer-icons a {
            color: white;
            font-size: 25px;
            transition: color 0.3s;
        }
        
        .footer-icons a:hover {
            color: #ccc;
        }
        
        .footer-bottom {
            text-align: center;
            font-size: 13px;
            margin-top: 20px;
            border-top: 1px solid #222;
            padding-top: 10px;
        }


        .footer-bottom-container {
            display: flex;
            scroll-snap-align: start;
            position: relative;
            width: 100%;
            justify-content: center;
            align-items: center;
            background-color: #FFFFFF;
            overflow: hidden; 
        }

        .footer-bottom-container-inner {
            display: flex;
            width: 1535px;
            height: 80px;
            color: #4D4B4B;
            background-color: none;
            position: relative;
            overflow: hidden;
            flex-direction: row;
            font-size: 14px;
            align-items: center;
            justify-content: space-between;
        }



        /* Główne kontener przewijania */
        .container {
            scroll-snap-type: y mandatory;
            margin: 0;
            padding: 0;
        }

        /* Sekcje */
        .section {
            display: flex;
            align-items: center;
            justify-content: center;
            scroll-snap-align: start;
            position: relative;
            text-align: center;
            flex-direction: column;
        }

        /* Animacje - domyślnie niewidoczne */
        .animate {
            opacity: 0;
            transform: translateY(658px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Aktywacja animacji */
        .active .animate {
            opacity: 1;
            transform: translateY(0);
        }


        /* Link do sekcji 3 */
        .scroll-link {
            margin-top: 20px;
            display: inline-block;
            padding: 10px 20px;
            background-color: #007BFF;
            color: #ffffff;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .scroll-link:hover {
            background-color: #0056b3;
        }








        




        @keyframes comeinRotate {
            0% {
                transform: translateY(0) rotate(90deg);
            }
            100% {
                transform: translateY(-400px) translateX(330px) rotate(0deg);
            }
        }

        /* Animacja: spadanie i obrót */
        @keyframes fallRotate {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(800px) translateX(-30px) rotate(180deg);
            }
        }

        /* Animacja zanikania pierwszej grafiki */
        @keyframes fadeOutOldBackground {
            0% {
                opacity: 1;
                transform: translateY(0);
            }
            70% {
                opacity: 0; /* W połowie drogi pierwsza grafika całkowicie znika */
            }
            100% {
                opacity: 0;
            }
        }

        /* Animacja pojawiania się nowej grafiki */
        @keyframes fadeInNewBackground {
            0% {
                opacity: 0;
            }
            40% {
                opacity: 0; /* Nowa grafika niewidoczna do połowy drogi */
            }
            100% {
                opacity: 1; /* Połowa drogi - grafika zaczyna być widoczna */
            }
        }
        
        /* Animacja wejścia z lewej */
        @keyframes slideInFromLeft {
            0% {
                transform: translateX(-200vw); /* Start poza ekranem po lewej */
            }
            100% {
                transform: translateX(0); /* Normalna pozycja */
            }
        }
        
        @keyframes moveUp {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(-100vw);
                opacity: 1;
            }
        }

        @keyframes moveUp2 {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(-20vw);
                opacity: 1;
            }
        }

        @keyframes moveBackground {
            0% {
                background-position: center top;
            }
            100% {
                background-position: center -340px;
            }
        }

        @keyframes resetBackground {
            0% {
                background-position: center -340px;
            }
            100% {
                background-position: center top;
            }
        }

        



 @media (max-width: 450px) {

/* Górna sekcja */
.top-container {
    margin-top: 0px;
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: none;
    overflow: hidden;
    background-image: url('images/big_background.jpg'); 
    background-size: cover;
    background-position: center calc(50% - 0px);
    animation:none;
}


/* Element do animacji */
.animated-box1 {
    display: none;
}

.animated-box2 {
    display: none;
}

.animated-title_1 {
    display: none;
}


.animated-title_2 {
    scale: 0.34;
    flex-direction: column;
    bottom:-120px;
    width: 1000px;
    height: 320px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    position: absolute;
    overflow: hidden; /* Ukrywa element */
    z-index: 2;
    animation: none
}

.container .top-container .animated-title_2 .landing_button_container {
    display: none;
}


.h2_title_2 {
    width: 100%;
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    line-height: 1.2; /* Zapewnia poprawne odstępy */
    display: block; /* Zapewnia, że całość traktowana jest jako jeden blok */
}

.h2_title_2 span {
    display: inline; /* Zapewnia, że `span` pozostaje w tej samej linii */
    white-space: nowrap; /* Zapobiega przełamaniu w `span`, ale pozwala na łamanie w innych miejscach */
    color: #EE509C;
}



.second-container {
    padding-top:0px;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    text-align: center;
    flex-direction: column;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    background-color: #EEEEEE;
    overflow: hidden;
    z-index: 2;
}

.second-container-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    text-align: center;
    flex-direction: column;
    max-width: 320px;
    height: 2200px;
    background-color: none;
    overflow: hidden;
    z-index: 2;
    gap:48px;
}



.second-box1 {
    width: 320px;
    height: 658px;
    background-color: #ffffff;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    color: #4D4B4B;
}

.s_box1_img {
    width:320px;
    height:480px;
    background-image: url('images/b2_img.jpg'); /* Zmień na swoją grafikę */
    background-size: cover;
    margin-bottom: 20px;
}

.s_box2_img {
    width:320px;
    height:480px;
    background-image: url('images/b2_img_1.jpg'); /* Zmień na swoją grafikę */
    background-size: cover;
    margin-bottom: 20px;
}

.s_box3_img {
    width:320px;
    height:480px;
    background-image: url('images/b2_img_2.jpg'); /* Zmień na swoją grafikę */
    background-size: cover;
    margin-bottom: 20px;
}


.s_box_h2 {
    padding-bottom:16px;
    font-size: 20px;
    font-weight: bold;
}

.s_box_txt {
    padding-bottom:16px;
    font-size: 14px;
    padding: 0 20px 0 20px ;
}

.second-box2 {
    width: 320px;
    height: 658px;
    background-color: #ffffff;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    color: #4D4B4B;
}

.second-box3 {
    width: 320px;
    height: 658px;
    background-color: #ffffff;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    color: #4D4B4B;
}

    /* Sekcje widoczne od razu bez animacji */
    .second-container-inner,
    .second-box1,
    .second-box2,
    .second-box3,
    .fourth-container-inner,
    .six-container-inner,
    .feature-box,
    .grid {
        display: flex !important; /* Ustaw, żeby były widoczne */
        opacity: 1 !important;    /* Widoczne od razu */
        transform: translateX(0) translateY(0) !important; /* Bez przesunięcia */
        transition: none !important; /* Wyłącz wszystkie przejścia */
    }
    
    /* Wyłączenie animacji przypisanych do klasy .animate i .active */
    .animate,
    .active .animate,
    .active .second-box1,
    .active .second-box2,
    .active .second-box3,
    .active .fourth-container-inner,
    .active .six-container-inner,
    .active .feature-box,
    .active .grid {
        animation: none !important;
        transition: none !important;
    }

    .third-container {
        display: none;
    }


    /* Kontener główny (szare tło) */
    .fourth-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 650px;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden; /* Blokuje przewijanie głównego kontenera */
        background-color: white ;
        color:#4D4B4B;
    }

    /* Kontener wewnętrzny (animacja) */
    .fourth-container-inner {
        margin-top:50px;
        display: flex;
        flex-direction: column;
        width: 100%;

    }

    /* Nagłówek, który ma być nad przewijanym elementem */
    .fourth-container-inner_h2 {
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        color: #4D4B4B;
        margin-bottom: 10px;
    }

    /* Kontener przewijany */
    .fourth-container-inner_positioner {
        display: flex;
        flex-direction: row;
        gap: 20px;
        overflow-x: auto; /* Aktywuje przewijanie w poziomie */
        scroll-snap-type: x mandatory;
        width: 100%;
        height: 490px;
        white-space: nowrap; /* Zapobiega łamaniu linii */
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch; /* Płynne przewijanie na urządzeniach mobilnych */
    }

    /* Styl boxów (muszą być w jednej linii) */
    .fourth-container-box1,
    .fourth-container-box2,
    .fourth-container-box3 {
        display: inline-block; /* Umożliwia przewijanie w poziomie */
        flex-shrink: 0; /* Zapobiega zmniejszaniu się boxów */
        width: 280px; /* Szerokość każdego boxa */
        height: 450px;
        scroll-snap-align: start;
        background-color: white;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }


    .fourth_box_img1,
    .fourth_box_img2,
    .fourth_box_img3 {
        width: 100%; /* Dopasowanie do szerokości diva matki */
        height: 188px; /* Wysokość zgodna z wymaganiami */
        background-size: cover;
        background-position: center; /* Środkowanie grafiki */
        background-repeat: no-repeat;
        border-radius: 8px; /* Zaokrąglone rogi jeśli chcesz */
    }

 /* Zawijanie tekstu wewnątrz boxów */
 .fourth-container-box1,
 .fourth-container-box2,
 .fourth-container-box3 {
     word-wrap: break-word; /* Zapewnia zawijanie długich słów */
     overflow-wrap: break-word; /* Alternatywne zawijanie */
     white-space: normal; /* Zawijanie linii w tekstach */
 }


    /* Styl przewijania */
    .fourth-container-inner_positioner::-webkit-scrollbar {
        height: 6px;
        background-color: white;
    }

    .fourth-container-inner_positioner::-webkit-scrollbar-thumb {
        background-color: #873895;
        border-radius: 3px;
    }


    .fifth-container {
        display: flex;
        scroll-snap-align: start;
        position: relative;
        text-align: center;
        flex-direction: row;
        width: 100%;
        height: 500px;
        justify-content: center;
        align-items: center;
        background-color: #EEEEEE;
        overflow: hidden; /* Ukrywa element */
        z-index: 2;
    }

    .fifth-container-inner {
        margin-top: 80px;
        display: flex;
        width: 420px;
        height: 470px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        flex-direction: column;
    }

    .fifth-container-inner_top {
        display: flex;
        width:420px;
        height: 30px;
        font-weight: bold;
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 20px;
        background-color: none;
    }

    .fifth-container-inner_top_left {
        font-size: 28px;
        font-weight: bold;
        text-align: left;
        text-transform: uppercase;
        margin-left: 20px;
    }

    .fifth-container-inner_top_right {
        display: none;
    }


    .fifth-container-inner_bottom {
        display: flex;
        width:410px;
        height: 550px;
        font-size: 16px;
        background-color: none;
        flex-direction: row;
        justify-content: space-between;
    }

    .fifth_small_box1 {
        scale:0.9;
        display: flex;
        flex-direction: column; /* Ustawienie elementów pionowo */
        align-items: center; /* Wyśrodkowanie w poziomie */
        justify-content: center; /* Wyśrodkowanie w pionie */
        width: 205px;
        height: 343px;
        background-color: white;
        font-size: 16px;
        border-radius: 25px;
        border: 1px solid #E1E1E1;
        overflow: hidden;
        position: relative;
        transition: background-color 0.5s ease;
    }

    .fifth_small_box1:hover {
        background-color: #EEEEEE;
    }

    .fifth_small_box2 {
        scale:0.9;
        display: flex;
        flex-direction: column; /* Ustawienie elementów pionowo */
        align-items: center; /* Wyśrodkowanie w poziomie */
        justify-content: center; /* Wyśrodkowanie w pionie */
        width: 205px;
        height: 343px;
        background-color: white;
        font-size: 16px;
        border-radius: 25px;
        border: 1px solid #E1E1E1;
        overflow: hidden;
        position: relative;
        transition: background-color 0.5s ease;
    }

    .fifth_small_box2:hover {
        background-color: #EEEEEE;
    }

    .fifth_small_box3 {
        display: none;
    }

    .fifth_small_box4 {
        display: none;
    }

    .fifth_small_box7 {
        display: none;
    }

    .fifth_small_box8 {
        display: none;
    }

    .small_box_image1,
    .small_box_image2,
    .small_box_image3,
    .small_box_image4,
    .small_box_image5,
    .small_box_image6,
    .small_box_image7,
    .small_box_image8 {
        margin-top:-30px;
        display: flex;
        justify-content: center;
        align-items: center; 
        height: 180px;
        width: 190px;
        background-size: cover;
        background-position: center; /* Środkowanie grafiki */
        background-repeat: no-repeat;
        text-align: center;
        position: relative;
        background-color: none; 
    }

    .small_box_txt {
        margin-top: 40px;
        display: flex;
        align-items: center; 
        justify-content: center; 
        width: 180px;
        height: 40px;
        text-align: left;
        color: #4D4B4B;
    }

    .small_box_txt_h2 {
        margin-top: 40px;
        display: flex;
        width: 180px;
        height: auto;
        text-align: left;
        font-weight: bold;
        font-size: 20px;
        flex-direction: column;
    }

    .six-container {
        display: flex;
        scroll-snap-align: start;
        position: relative;
        text-align: center;
        flex-direction: row;
        width: 100%;
        height: 1400px;
        justify-content: center;
        align-items: center;
        background-color: white;
        overflow: hidden; /* Ukrywa element */
        z-index: 2;
    }

    .six-container-inner {
        display: flex;
        width: 100%;
        height: 1240px;
        color:#EEEEEE;
        background-color: none;
        position: relative;
        overflow: hidden;
        flex-direction: column;
        gap:20px
    }

    .six-container-inner-box-left {
        display: flex;
        width: 100%;
        height: 508px;
        color:#4D4B4B;
        background-image: url('images/offer.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 25px 25px 25px 25px;
        position: relative;
        overflow: hidden;
    }

    .six-container-inner-box-right {
        margin-top:20px;
        display: flex;
        width: 400px;
        height: 640px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        flex-direction: column;
        margin-left: 10px;
    }

    .six-container-inner-box-top {
        display: flex;
        width: 400px;
        height: 230px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        text-align: left;
    }


    .offer-section {
        max-width: 400px;
        height: 230px;
    }
    
    .offer-section h2 {
        text-align: center;
        font-size: 25px;
        font-weight: bold;
        line-height: 1.3;
    }
    
    .offer-section h2 span {
        color: #4D4B4B; /* Standardowy kolor */
    }
    
    .offer-section h2 .highlight {
        color: #873895; /* Fioletowy kolor */
    }
    
    .offer-section p {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 10px;
        margin-left:10px;
        width:360px;
    }
    
    .landing_button_container_6 {
        text-align: center;
        justify-content: center;
        align-items: center; 
        display: flex;
        line-height: 1.5;
        position: relative;
        background-color: none;
        margin:36px 0 36px 0;
    }
    

    .baner_button_6 {
        display: flex;
        line-height: 1.5;
        position: relative;
        padding: 15px;
        width: 210px;
        height: 55px;
        font-size: 16px;
        color: #873895;
        border: 2px solid #873895;
        background-color: none;
        border-radius:20px;
        font-weight: 700;
        text-decoration: none;
        transition: color 0.5s ease, border-color 0.5s ease, background-color 0.5s ease;
    }

    .baner_button_6:hover {
        color:#ffffff;
        border: 2px solid #873895;
        background-color: #873895;
    }


    .six-container-inner-box-bot {
        display: flex;
        width: 390px;
        height: 300px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        text-align: left;
        justify-content: center;
        align-items: center; 
    }

    .reviews-section {
        max-width: 380px;
        margin-top: 0px;
        justify-content: center;
        align-items: center; 
    }
    
    .review {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .review img {
        width: 72px;
        height: 72px;
        border-radius: 5px;
        margin-right: 15px;
    }
    
    .review-content {
        display: flex;
        flex-direction: column;
    }
    
    .stars {
        font-size: 20px;
        color: #F6C000;
    }
    
    .review p {
        font-size: 14px;
        line-height: 1.4;
        margin-top: 5px;
    }
    

    .animate_6-1,
    .animate_6-2,
    .active .animate_6-1,
    .active .animate_6-2 {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
    }



    .seventh-container {
        display: flex;
        scroll-snap-align: start;
        position: relative;
        text-align: center;
        flex-direction: column;
        width: 100%;
        height: 1000px;
        justify-content: center;
        align-items: center;
        background-color: #eeeeee;
        overflow: hidden; /* Ukrywa element */
        z-index: 2;
    }

    .seventh-container-inner {
        display: flex;
        width: 100%;
        height: 1000px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        flex-direction: column;
    }


    .feature-box {
        max-width: 440px;
        height: 200px;
        margin-right: 30px;
        text-align: left;
        color: #4D4B4B;
        display: block;
        display: flex;
        flex-direction: column; /* Ustawia elementy jeden pod drugim */
        align-items: flex-start; /* Wyrównuje elementy do lewej */
    }


    .feature-box h2, .feature-box p {
        width: 350px; /* Zajmuje pełną szerokość */
        margin: 0 0 0 0; /* Usuń domyślne marginesy */
        margin-left:40px;
    }

    .feature-box h2 {
        text-align: center;
        font-size: 25px;
        margin-bottom: 10px; /* Odstęp między nagłówkiem a tekstem */
    }

    .feature-box p {
        text-align: center;
        margin-top: 0px; /* Zapewnia odpowiedni odstęp */
    }

    .feature-box h2 span {
        color: #873895;
    }
    
    .feature-box ul {
        display: none;
    }

    .feature-box strong {
        display: none;
    }

    .baner_button_7 {
        display: none;
    }

    .grid {
        margin-top:20px;
        display: flex;
        flex-direction: row;
        width: 90%;
        height: 600px;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        overflow-x: auto; /* Aktywuje przewijanie w poziomie */
        white-space: nowrap; /* Zapobiega łamaniu linii */
        -webkit-overflow-scrolling: touch;
    }

    .grid::-webkit-scrollbar {
        height: 6px;
        background-color: white;
    }

    .grid::-webkit-scrollbar-thumb {
        background-color: #873895;
        border-radius: 3px;
    }

    .grid-wrapper {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0px;
    }

    .grid-item-container-top, .grid-item-container-bot {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }

    .grid-item, .grid-item-bot {
        width: 200px;
        height: 280px;
        display: flex;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .grid-item-img1, .grid-item-img2, .grid-item-img3, .grid-item-img4,
    .grid-item-img5, .grid-item-img6, .grid-item-img7, .grid-item-img8 {
        width: 200px;
        height: 200px;
        background-size: cover;
        background-position: center;
    }

    .grid-item-img1 { background-image: url('images/features/port1_.png'); }
    .grid-item-img2 { background-image: url('images/features/port2_.png'); }
    .grid-item-img3 { background-image: url('images/features/port3_.png'); }
    .grid-item-img4 { background-image: url('images/features/port4_.png'); }
    .grid-item-img5 { background-image: url('images/features/port5_.png'); }
    .grid-item-img6 { background-image: url('images/features/port6_.png'); }
    .grid-item-img7 { background-image: url('images/features/port7_.png'); }
    .grid-item-img8 { background-image: url('images/features/port8_.png'); }

    .grid-item-span, .grid-item-span-bot {
        width: 200px;
        height: auto;
        font-size: 16px;
        margin-top: 10px;
        color: #4D4B4B;
        font-weight: 600;
        text-align: center;
    }



    .animate_7-1,
    .active .animate_7-1,
    .animate_7-2,
    .active .animate_7-2 {
        display:none;
    }



    /* Kontener główny (szare tło) */
    .nine-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 500px;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden; /* Blokuje przewijanie głównego kontenera */
        background-color: white ;
        color:#4D4B4B;
    }

    /* Kontener wewnętrzny (animacja) */
    .nine-container-inner {
        margin-top:20px;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 500px;
    }


    /* Kontener przewijany */
    .nine-container-inner_positioner {
        margin-top: 50px;
        display: flex;
        flex-direction: row;
        gap: 20px;
        overflow-x: auto; /* Aktywuje przewijanie w poziomie */
        scroll-snap-type: x mandatory;
        width: 100%;
        height: 500px;
        white-space: nowrap; /* Zapobiega łamaniu linii */
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch; /* Płynne przewijanie na urządzeniach mobilnych */
    }

    /* Styl boxów (muszą być w jednej linii) */
    .nine-container-box1,
    .nine-container-box2,
    .nine-container-box3,
    .nine-container-box4 {
        display: inline-block; /* Umożliwia przewijanie w poziomie */
        flex-shrink: 0; /* Zapobiega zmniejszaniu się boxów */
        width: 342px;
        height: 344px;
        scroll-snap-align: start;
        background-color: #eeeeee;
        border-radius: 10px;
        padding: 10px;
    }


    .nine_box_img1,
    .nine_box_img2,
    .nine_box_img3,
    .nine_box_img4 {
        width: 100%; /* Dopasowanie do szerokości diva matki */
        height: 188px; /* Wysokość zgodna z wymaganiami */
        background-size: cover;
        background-position: center; /* Środkowanie grafiki */
        background-repeat: no-repeat;
        border-radius: 8px; /* Zaokrąglone rogi jeśli chcesz */
    }



    /* Styl przewijania */
    .nine-container-inner_positioner::-webkit-scrollbar {
        height: 6px;
        background-color: white;
    }

    .nine-container-inner_positioner::-webkit-scrollbar-thumb {
        background-color: #873895;
        border-radius: 3px;
    }

    .animate_4,
    .active .animate_4 {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        will-change: auto !important;
    }

    
    .nine-container-inner_h2 {
        font-size: 23px;
        margin-bottom:0px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .nine-container-inner_h2 span {
        color:#873895;
    }




    .eighth-container {
        display: flex;
        scroll-snap-align: start;
        position: relative;
        text-align: center;
        flex-direction: column;
        width: 100%;
        height: 800px;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        overflow: hidden; /* Ukrywa element */
        z-index: 2;
    }

    .eighth-container-inner {
        display: flex;
        width: 100%;
        height: 40px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
    }

    .eighth-container-inner2 {
        margin-top:40px;
        display: flex;
        width: 100%;
        height: 554px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        flex-direction: column;
    }

    .carusel {
        margin-left:3px;
        width:1535px;
        height:554px;
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap:23px;
    }

    .wagon {
        min-width: 370px;
        height: 554px;
        background: none;
        border-radius: 10px;
        overflow: hidden;
        background-size: 100%;
    }

    .carusel-menu {
        display: flex;
        width: 100%;
        height: 40px; /* Powiększamy, żeby przyciski nie były zasłonięte */
        position: absolute; /* Zapewnia poprawne pozycjonowanie */
        align-items: center;
        z-index: 5; /* Na wierzchu */
        justify-content: space-between; 
        background: none; /* Opcjonalnie, jeśli gradient je zasłania */
        font-size:10px;
    }

    div.carusel-menu div.fifth-container-inner_top_left {
        font-size:18px;
        text-align: center;
        align-items: center;
        max-width: 350px;
        font-weight: bold;
        text-transform: uppercase;
        margin-left: 30px;
    }

    div.carusel-menu .fifth-container-inner_top_carusel_right {
        display: none;
    }

    

    #section11 {
        display: none;
    }

    .twelfth-container-inner iframe {
        max-width: 410px;
    }

    #section13 {
        display: none;
    }


    .fourteen-container {
        display: flex;
        scroll-snap-align: start;
        position: relative;
        text-align: center;
        flex-direction: column;
        width: 100%;
        height: 960px;
        justify-content: center;
        align-items: center;
        background-color: #ffffff;
        overflow: hidden; /* Ukrywa element */
        z-index: 2;
    }

    .fourteen-container-inner {
        display: flex;
        width: 380px;
        height: 880px;
        color:#4D4B4B;
        background-color: #EEEEEE;
        position: relative;
        overflow: hidden;
        flex-direction: column;
        border-radius: 25px;
        justify-content: space-between;
    }

    .fourteen-container-inner-img {
        display: flex;
        width: 380px;
        height: 300px;
        overflow: hidden;
    }

    .fourteen-container-img {
        margin-left:-50px;
        width: 380px;
        height: 350px;
        margin-top:-50px;
        background-image: url('images/contact.jpg'); /* Zmień na swoją grafikę */
        background-size:cover;
        background-color: #873895; /* Różowy kolor */
    }

    .animate-img-14 {
        opacity: 1;
        transform: translateX(50px);
    }

    .active .animate-img-14 {
        opacity: 1;
        transform: translateX(50px);
    }


    .fourteen-container-inner-txt {
        margin-left:10px;
        margin-top:0px;
        display: flex;
        width: 350px;
        height: 540px;
        background-color: none;
        flex-direction: column;
        text-align: left;
        display: inline; 
        font-size: 15px;
    }

    .fourteen-container-txt-h2 {
        font-size: 28px;
        margin-bottom: 0px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .fourteen-container-txt-h2 h2 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 26px;
    }

    .fourteen-container-txt-h2 p {
        margin-bottom: 26px;
    }

    .fourteen-container-txt-h2 span {
        color:#873895;
    }

    .fourteen-container-txt-hr {
        border-bottom: 1px solid #873895;
        width: 350px;
        margin: 20px 0px 20px 0px;
    }



    .fiftheen-container {
        display: flex;
        scroll-snap-align: start;
        position: relative;
        text-align: center;
        width: 100%;
        height: 880px;
        justify-content: center;
        background-color: #ffffff;
        overflow: hidden; /* Ukrywa element */
        z-index: 2;
    }

    .fiftheen-container-inner {
        display: flex;
        width: 400px;
        height: 800px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        flex-direction: column;
        font-size: 16px;
        justify-content: space-between;
    }

    .fiftheen-container-txt {
        display: flex;
        margin-top:20px;
        margin-left:20px;
        width: 360px;
        height: 150px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        flex-direction: column;
        text-align: left;
    }

    .fiftheen-container-txt-h2 {
        font-size: 24px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .fiftheen-container-box {
        margin-top:30px;
        display: flex;
        width: 400px;
        height: 600px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        flex-direction: row;
        gap: 20px;
    }

    .fiftheen-container-box-top {
        display: flex;
        width: 180px;
        height: 580px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        flex-direction: column;
        justify-content: space-between;
        margin-left: 10px;
    }
    .fiftheen-container-box-bot {
        display: flex;
        width: 180px;
        height: 580px;
        color:#4D4B4B;
        background-color: none;
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        flex-direction: column;
        justify-content: space-between;

    }

    .fiftheen-box {
        display: flex;
        width: 180px;
        height: 180px;
        color:#4D4B4B;
        background-color: #EEEEEE;
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        flex-direction: column;            
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 16px;
        gap: 20px;
    }

    .fiftheen-box1 {
        display: flex;
        width: 180px;
        height: 180px;
        color:#4D4B4B;
        background-color: #EEEEEE;
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        flex-direction: column;            
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 16px;
        gap: 20px;
    }

    .fiftheen-box-img1 {
        display: flex;
        width: 68px;
        height: 68px;
        background-color: none;
    }

    .fiftheen-box-img2 {
        justify-content: center;
        align-items: center;
        margin-left:20px;
        display: flex;
        width: 68px;
        height: 68px;
        background-color: none;
    }

    .fiftheen-box-img1 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .fiftheen-box-img2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer-column {
        display: none;
    }

    .footer-column1 {
        margin-top:-20px;
        width:400px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-container {
        width: 100%;
    }

    .footer-bottom-container-inner {
        width: 400px;
        height: 100px;
    }

    .footer-bottom-container-inner p {
        margin: left 10px;
    }




















}

    /*  Tablety (481px – 1024px) */
    @media (min-width: 481px) and (max-width: 1024px) {
    }



    /*  Duże ekrany (1536px i więcej) */
    @media (min-width: 1600px) {
    }