@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');


:root{
    --orange:#a3c2bc;;
    --jasnozielony: #a3c2bc;
    --pink:#f310af;
    --black: #1d1c1c;
    --white: #fff;
    --yellow: #f0c95e;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
    --box-shadow2: 0 -1rem 3rem rgba(0,0,0,.15);


    --box-shadow3: 0 1.5rem 3rem rgba(0,0,0,.2);


}

*{
  font-family: 'Poppins', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
 
  transition: all .2s linear;
}

html{
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.heading{
    font-size: 4rem;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 6rem;
  }
  
  .heading span{
    color: var(--jasnozielony);
    text-transform: uppercase;
  }
  
  
.header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    background: var(--white);
    box-shadow: var(--box-shadow);
      z-index: 9999; /* zawsze nad innymi elementami */
  }
  .header .social-icons {
    display: none;
  }
  .header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
  }
  
  .header .logo i{
    color: var(--jasnozielony);
  }
  
  .header .navbar a{
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
  }
  
  .header .navbar a:hover,
  .header .icons div:hover{
    color: var(--jasnozielony);
  }
  
  .header .icons div{
    font-size: 2.5rem;
    margin-left: 1.7rem;
    color: var(--black);
    cursor: pointer;
  }
  
  #menu-btn{
    display: none;
  }
  
  .header .login-form{
    position: absolute;
    top: 110%; right: -110%;
    width: 35rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: .5rem;
    background: var(--white);
    text-align: center;
  }
  
  .header .login-form.active{
    right: 2rem;
    transition: .4s linear;
  }
  
  .header .login-form h3{
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--black);
  }
  
  .header .login-form .box{
    width: 100%;
    margin: .7rem 0;
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: capitalize;
  }
  
  .header .login-form p{
    font-size: 1.4rem;
    padding: .5rem 0;
    color: var(--light-color);
  }
  
  .header .login-form p a{
    color: var(--jasnozielony);
    text-decoration: underline;
  }
  
/* glowna */

/* home */

/* Sekcja HOME */
/* Sekcja HOME */
.home {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

/* Kontener BOX */
.home .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem; /* Większy odstęp między elementami */
  place-items: start; /* Uniknięcie centrowania */
  text-align: left; /* Wyrównanie tekstu */
  padding-left: 170px;
  align-items: start;
}

/* Styl dla każdego BOX-a */
.home .box-container .box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  
}

/* Tekst w boxie */
/* Nowe stylowanie dla h3 */
.home .box-container .box h3 {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 4rem; /* Zmniejszony, żeby wyglądał lepiej */
  font-weight: 700;
  line-height: 1.3; /* Lepsza czytelność */
  color: var(--black);
  text-align: left; /* Wyrównanie do lewej */
  padding-bottom: 1rem;
  position: relative; /* Potrzebne do animacji */
  transition: transform 0.3s ease-in-out, letter-spacing 0.3s ease-in-out;
}

/* Efekt hover na h3 (subtelne powiększenie i odstęp liter) */


/* Podkreślenie ważnych słów */
.home .box-container .box h3 span {
  color: var(--jasnozielony);
  font-weight: 800;
  transition: color 0.3s ease-in-out;
}

/* Efekt zmiany koloru span na hover */
.home .box-container .box h3 span:hover {
  color: #d98a30;
}

/* Dodanie cienia pod tekstem */
.home .box-container .box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 4px;
  background-color: var(--jasnozielony);
  transition: width 0.3s ease-in-out;
}

/* Powiększenie podkreślenia po najechaniu */
.home .box-container .box h3:hover::after {
  width: 100%;
}




/* Ikona telefonu wewnątrz h3 */
.home .box-container .box h3 i {
  color: var(--jasnozielony);
  margin-right: 10px;
  font-size: 2.5rem;
}

/* Stylizacja przycisku do dzwonienia */
.call-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--jasnozielony);
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ikona telefonu w przycisku */
.call-button i {
  margin-right: 10px;
  font-size: 2.5rem;
}

/* Efekt hover na przycisku */
.call-button:hover {
  background-color:  var(--jasnozielony);
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Obrazek w boxie */
.home .box-container .box img {
  display: block;
  justify-self: start;
  align-self: flex-start;
  max-width: 100%;
  height: auto;
  padding-left: 250px;
  padding-top: 50px;
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
 
}

/* Efekt powiększenia obrazka na hover */
.home .box-container .box img:hover {
  transform: scale(1.3);
}





.custom-shape-divider-bottom-1684324473 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1684324473 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.9px);
  height: 207px;
  transform: rotateY(180deg);
  
}

.custom-shape-divider-bottom-1684324473 .shape-fill {
  fill: var(--black);
}
/* Separator SVG na górze sekcji ABOUT */
.custom-shape-divider-top-1684324473 {
  position: absolute;
  top: -1px; /* Zapewnia płynne przejście */
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1; /* Upewnia się, że jest nad tłem */
}

.custom-shape-divider-top-1684324473 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px; /* Możesz zwiększyć, jeśli chcesz większą falę */
  transform: rotate(0deg); /* Nie obracamy SVG */
}

/* Kolor separatora */
.custom-shape-divider-top-1684324473 .shape-fill {
  fill: var(--black); /* Dopasuj do koloru tła ABOUT */
}

/* Sekcja ABOUT */
.about {
  position: relative;
  background-color: var(--black); /* Tło pasujące do separatora */
  color: var(--white);
  padding: 10rem 5%;
  text-align: center;
  z-index: 2;
}

/* Nagłówek ABOUT */
.about h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 3rem;
}
.about h2 {
  font-size: 3rem;
  
  color: var(--white);
  margin-bottom: 4rem;
  margin-top: 4rem;
}

/* Stylizacja tekstu */
.about p {
  font-size: 1.8rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  text-align: justify;
}

/* Lista kwalifikacji */
.about ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 2rem auto;
}

.about ul li {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

/* Ikonka dla listy */
.about ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--jasnozielony);
  font-size: 2rem;
  font-weight: bold;
}

/* Sekcja „Dlaczego My” */
.dlaczegomy {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  padding: 8rem 5%;
  text-align: center;
}

/* Nagłówek */
.dlaczegomy .heading {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 3rem;
}

/* Kontener z powodami */
.reasons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

/* Pojedynczy powód */
.reason {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  
  /* Równa wysokość dla wszystkich */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  min-height: 350px; /* Możesz dostosować w zależności od ilości treści */
  flex: 1;
}

/* Ikonki */
.reason i {
  font-size: 5rem;
  color:  var(--jasnozielony);
  margin-bottom: 1.5rem;
}

/* Nagłówki powodów */
.reason h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Opis */
.reason p {
  font-size: 1.8rem;
  line-height: 1.5;
  flex-grow: 1; /* Zapewnia, że tekst zajmie dostępne miejsce, pomagając wyrównać wysokość */
}

/* Efekt hover */
.reason:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px #a3c2bc;;
}



/*wymiana butli */

/* Sekcja Wymiana */
.wymiana {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  padding: 8rem 5%;
  text-align: center;
  box-shadow: var(--box-shadow3);
}

/* Nagłówek */
.wymiana .heading {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 3rem;
}

/* Kontener dla butli */
.wymiana-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  place-items: center;
}

/* Pojedynczy box */
.wymiana-container .box {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Obrazki butli */
.wymiana-container .box img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease-in-out;
}

/* Efekt hover na obrazku */
.wymiana-container .box img:hover {
  transform: scale(1.05);
}

/* Nagłówki butli */
.wymiana-container .box h3 {
  font-size: 2.5rem;
  color:  var(--jasnozielony);
  margin-bottom: 1rem;
}

/* Opis butli */
.wymiana-container .box p {
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Efekt hover na box */
.wymiana-container .box:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px #a3c2bc;;
}

/* Trzeci box zajmujący całą szerokość */
.wymiana-container .box {
  grid-column: span 2; /* Zajmuje całą szerokość kontenera */
  max-width: 800px;
  margin-top: 2rem;
}

/* Kontener dla butli */
.wymiana-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  place-items: center;
}

/* Pojedynczy box */
.wymiana-container .box {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  text-align: left;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Obrazki butli */
.wymiana-container .box img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease-in-out;
}

/* Efekt hover na obrazku */
.wymiana-container .box img:hover {
  transform: scale(1.05);
}

/* Nagłówki butli */
.wymiana-container .box h3 {
  font-size: 2.5rem;
  color: var(--orang);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Stylizacja listy */
.wymiana-container .box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

/* Elementy listy */
.wymiana-container .box ul li {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

/* Ikony w liście */
.wymiana-container .box ul li i {
  position: absolute;
  left: 0;
  font-size: 2rem;
  color:  var(--jasnozielony);
}

/* sprzedaz */

.sprzedaz {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  padding: 8rem 5%;
  text-align: center;
  box-shadow: var(--box-shadow3);
}

/* Nagłówek */
.sprzedaz .heading {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 3rem;
}

/* Kontener dla butli */
.sprzedaz-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  place-items: center;
}

/* Pojedynczy box */
.sprzedaz-container .box {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Obrazki butli */
.sprzedaz-container .box img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease-in-out;
}

/* Efekt hover na obrazku */
.sprzedaz-container .box img:hover {
  transform: scale(1.05);
}

/* Nagłówki butli */
.sprzedaz-container .box h3 {
  font-size: 2.5rem;
  color:  var(--jasnozielony);
  margin-bottom: 1rem;
}

/* Opis butli */
.sprzedaz-container .box p {
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Efekt hover na box */
.sprzedaz-container .box:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px #a3c2bc;
}

/* Trzeci box zajmujący całą szerokość */
.sprzedaz-container .box {
  grid-column: span 2; /* Zajmuje całą szerokość kontenera */
  max-width: 800px;
  margin-top: 2rem;
}

/* Kontener dla butli */
.sprzedaz-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  place-items: center;
}

/* Pojedynczy box */
.sprzedaz-container .box {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  text-align: left;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Obrazki butli */
.sprzedaz-container .box img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease-in-out;
}

/* Efekt hover na obrazku */
.sprzedaz-container .box img:hover {
  transform: scale(1.05);
}

/* Nagłówki butli */
.sprzedaz-container .box h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Stylizacja listy */
.sprzedaz-container .box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

/* Elementy listy */
.sprzedaz-container .box ul li {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}

/* Ikony w liście */
.sprzedaz-container .box ul li i {
  position: absolute;
  left: 0;
  font-size: 2rem;
  color:  var(--jasnozielony);
}

/* Sekcja Certyfikat */
.certyfikat {
    position: relative;
    background-color: var(--black);
    color: var(--white);
    padding: 8rem 5%;
    text-align: center;
}

/* Nagłówek */
.certyfikat .heading {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 3rem;
}

/* Kontener dla treści */
.certyfikat-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pojedynczy box */
.certyfikat-container .box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    max-width: 800px;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Efekt hover na boxie */
.certyfikat-container .box:hover {
    transform: scale(1.02);
    box-shadow: 0px 8px 20px var(--jasnozielony);
}

/* Nagłówki w boxie */
.certyfikat-container .box h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Lista kwalifikacji */
.certyfikat-container .box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

/* Elementy listy */
.certyfikat-container .box ul li {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

/* Ikony w liście */
.certyfikat-container .box ul li i {
    position: absolute;
    left: 0;
    font-size: 2rem;
    color:  var(--jasnozielony);
}

/* Styl paragrafów */
.certyfikat-container .box p {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.certyfikat-container .box p a{
  font-size: 1.8rem;
  line-height: 1.5;
  color: #14d6f0;
  margin-bottom: 1.5rem;
}


  .uszczelka .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem,1fr));
    gap: 1rem;
    place-items: center; /* Skrót dla align-items + justify-items */
    text-align: center;
    align-items: start;
    
  }
  .uszczelka .box-container .box {
    text-align: left; /* Tekst wyrównany do lewej */
    padding: 2rem;
    position:relative;
}


.uszczelka .box-container .box:first-child {
  border-top: 2px solid  var(--jasnozielony);
}


.uszczelka .box-container .box h3 {
    font-size: 2.8rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.uszczelka .box-container .box h4 {
    font-size: 2rem;
    color: var(--black);
    margin-top: 2rem;
    border-bottom: 2px solid  var(--jasnozielony);
    display: inline-block;
    padding-bottom: 0.5rem;
}


.uszczelka .box-container .box ul {
    list-style: none; /* Usunięcie domyślnych punktów */
    padding-left: 0;
    margin-top: 1rem;
}

.uszczelka .box-container .box ul li {
    font-size: 1.8rem;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

/* Dodanie ikony do listy */
.uszczelka .box-container .box ul li::before {
    content: "✔"; /* Możesz użyć innej ikonki */
    color:var(--jasnozielony);
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Styl dla ceny */
.uszczelka .box-container .box .cena {
    font-size: 2.2rem;
    font-weight: bold;
    color:  var(--jasnozielony);
    margin-top: 1rem;
}

/* Styl dla uwagi */
.uszczelka .box-container .box .uwaga {
    font-size: 1.8rem;
    color: red;
    margin-top: 2rem;
    font-weight: bold;
}
.uszczelka .box-container .box img {
  max-width: 77%; /* Możesz dostosować */
  height: auto;
  padding:10px;
  padding-left: 00px;
  padding-right: 200px;
}




  /* footer */

.footer{
  background: var(--white);

}

.footer .box-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem,1fr));
  gap: 5rem;
  box-shadow: var(--box-shadow2);
  place-items: center; /* Skrót dla align-items + justify-items */
  text-align: center;
  align-items: start;
}

.footer .box-container .box h3{
  font-size: 2.2rem;
  color: var(--black);
  padding: 1rem 0;
  
  
}

.footer .box-container .box2 h3{
  margin-left: 15px;
  padding-right: 200px;
  font-size: 2.2rem;
  color: var(--black);
  padding: 1rem 0;
  
}
.footer .box-container .box2 img{
  padding-left: 40px;
  height: 300px;
  width: 300px;
}

.footer .box-container .box p{
  font-size: 1.5rem;
  color: var(--black);
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box a{
  display: block;
  font-size: 1.4rem;
  color: var(--black);
  padding: 1rem 0;
}

.footer .box-container .box a:hover{
  color: var(--jasnozielony);
}

.footer .box-container .box a i{
  padding-right: .5rem;
  color: var(--jasnozielony);
}

.footer .credit{
  text-align: center;
  background-color: var(--white);
  font-size: 2rem;
  padding: 3rem; 
  padding-top: 2rem;
  border-top: .1rem solid rgba(0,0,0,.3);

 
}

.footer .credit span{
  color: var(--jasnozielony);
}

@media (max-width: 768px) {
  .wymiana-container, 
  .sprzedaz-container,
  .certyfikat-container, 
  .reasons-container {
      grid-template-columns: 1fr; /* Jeden box na szerokość */
  }

  .box img {
      max-width: 90%;
      height: auto;
  }

  .footer .box-container {
      grid-template-columns: 1fr; /* Ustawienie w pionie */
      text-align: left;
  }

  .footer .box-container {
    display: flex;
    flex-direction: column; /* Ustawienie w pionie */
    align-items: flex-start; /* Wyrównanie do lewej */
    text-align: left;
    gap: 2rem; /* Dodanie odstępu między boxami */
    padding-left: 20px;
}

.footer .box-container .box,
.footer .box-container .box2 {
    width: 100%;
}


/* Poprawka do linków */
.footer .box-container .box a {
    display: block;
    text-align: left; /* Wyrównanie linków do lewej */
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.footer .credit {
    text-align: center; /* Zachowanie wyśrodkowania stopki */
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .uszczelka .box-container .box img {
    max-width: 70%;
    display: block;
    margin: 0 auto; /* Wyśrodkowanie na środku */
    padding: 0; /* Usunięcie paddingów */
    transform: scale(1); /* Bez powiększenia */
  }
}


}

@media (max-width: 768px) {
  .footer .box-container .box2 {
      display: flex;
      justify-content: flex-start; /* Ustawienie elementów do lewej */
      align-items: center; /* Wyrównanie pionowe */
      text-align: left; /* Zapewnienie wyrównania tekstu */
  }

  .footer .box-container .box2 img {
    max-width: 70%;
    display: block;
    margin: 0 auto; /* Wyśrodkowanie na środku */
    padding: 0; /* Usunięcie paddingów */
    transform: scale(1); /* Bez powiększenia */
  }
}

@media (max-width: 768px) {
  .home {
      min-height: auto;
      padding: 5rem 3%;
  }

  .home .box-container {
      grid-template-columns: 1fr; /* Jeden element na szerokość */
      text-align: center;
      height:75rem;
      padding-left: 0; /* Usunięcie dużego paddingu */
  }

  .home .box-container .box h3 {
      font-size: 3rem; /* Zmniejszony tekst */
      text-align: center;
  }

 .home .box-container .box img {
      max-width: 200%;
      display: block;
      margin: 0 auto; /* Wyśrodkowanie na środku */
      padding: 0; /* Usunięcie paddingów */
      transform: scale(1); /* Bez powiększenia */
  }

  .call-button {
      font-size: 1.8rem;
      padding: 1rem 2rem;
  }
  .home .box-container .custom-shape-divider-bottom-1684324473{
    padding-top: 450px;
    margin-top: 500px;
    background-color: #14d6f0;
  }
}

@media (max-width: 768px) {
  .header {
      display: none; /* Ukrywa menu na małych ekranach */
  }

  .headeractive {
      display: flex; /* Pokazuje menu po kliknięciu */
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: var(--white);
      box-shadow: var(--box-shadow);
      padding: 1rem 0;
      text-align: center;
      z-index: 1000;
  }

  .header a {
      padding: 1.5rem;
      font-size: 2rem;
      color: var(--black);
  }
  .custom-shape-divider-bottom-1684324473 {
    margin-top: 5rem; /* Odsunięcie separatora od góry */
    margin-bottom: 10rem;
    height: 1000px;
    
}

.home {
    padding-bottom: 8rem; /* Większy odstęp pod sekcją HOME */
}

.home .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Wyśrodkowanie kontenera */
  align-items: center;
  text-align: center;
}

.home .box-container .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Wyśrodkowanie elementów w boxie */
  text-align: center;
}

.home .box-container .box img {
  display: block;
  max-width: 100%;
  width: 80%;
  height: auto;
  margin: 0 auto; /* Automatyczne wyśrodkowanie */
}




}

.wymiana .wymiana-container .box img {
  display: block; /* Umożliwia wyśrodkowanie */
  margin: 0 auto; /* Wyśrodkowanie poziome */
  padding-bottom: 20px;
}

.sprzedaz .sprzedaz-container .box img {
  display: block; /* Umożliwia wyśrodkowanie */
  margin: 0 auto; /* Wyśrodkowanie poziome */
}

.call-button {
  position: relative;
  z-index: 1000;
}

.box-container .zdjecie_uszczelki img{
  width: 300px!important;
  height: 300px!important;
}
@media (max-width: 768px) {
  .box-container .zdjecie_uszczelki img {
    width: 150px !important;
    height: 150px !important;
  }
}

/* Na bardzo małe ekrany (np. telefony <480px) */
@media (max-width: 480px) {
  .box-container .zdjecie_uszczelki img {
    width: 100px !important;
    height: 100px !important;
  }
}