/* GŁÓWNY NAGŁÓWEK – HEADER */
/* =============================== */

header.et-l.et-l--header{position:relative; z-index:99}
.pomaranczowy_pasek{
	z-index: 90 !important;
}
/* Kontener główny */
.header-wrapper-1041 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  max-width: 100%;
}

/* przycisk prezentacja */
.slide-button-1141 {
  position: absolute;
  right: 0;
  top: 25%; 
  display: flex;
  flex-direction: column; 
  background: #292825;
  padding: 20px 45px 20px 25px;
  border-radius: 20px 0 0 20px;
  color: #fff;
  z-index: 20;
  text-decoration: none;
  max-width: 450px;
  transition: background 0.3s;
}

.slide-button-1141:hover {
  background: #1f1e1b;
}

.top-row-1141 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yt-icon-1141 {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.title-1141 {
  font-size: 34px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.subtitle-1141 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .slide-button-1141 {
    display: none;
  }
}

/* Wiersz 1 – zwykły, nad sticky */
.header-1041-1 {
  width: 100%;
  background-color: #000;
  z-index: 1;
	position: relative;
}

/* Wiersz 2  */
.header-1041-2 {
  position: relative;
  width: 100%;
  background-color: #292825;
  transition: all 0.3s ease;
}

.header-1041-2.scrolled-1041 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(34,34,34,0.96) !important; /* prawie pełne krycie */
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


/* Wewnętrzny kontener */
.header-inner-1041 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

/*//////////// WIERSZ GÓRA */
.header-top-row-1041 {
  width: 100%;
}

/* Układ 3 kolumn: logo / menu / social+flagi */
.header-top-columns-1041 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Kolumna 1 – logo */
.header-col-left-1041 {
  flex: 0 0 auto;
}
.header-col-left-1041 img {
  max-height: 45px;
  width: auto;
}

/* Kolumna 2 – menu (wyśrodkowane, elastyczne) */
.header-col-center-1041 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; 
}

/* Kolumna 3 + 4 – social + flagi */
.header-col-right-1041 {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 0 0 auto;
}

/* Menu1 */
.menu-top1-1041 {
  display: flex;
  gap: 30px;
  list-style: none !important;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
}
.header-col-center-1041 ul.menu-top1-1041 {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.menu-top1-1041 li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.menu-top1-1041 li::marker {
  display: none;
}
.menu-top1-1041 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.menu-top1-1041 a:hover {
  color: #ff9000;
}

/* Ikony */
.header-col-3-1041 {
  display: flex;
  align-items: center; 
  gap: 10px;
  margin: 0; 
  padding: 0;
}

.header-col-3-1041 a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(93%) contrast(90%);
}

/* Flagi */
.header-col-4-1041 {
  display: flex;
  align-items: center; 
  gap: 8px;
  margin: 0;
  padding: 0;
}

/*Desktop: */
@media (min-width: 769px) {
  .mobile-menu-toggle-1041,
  .mobile-menu-dropdown-1041 {
    display: none !important;
  }

  .header-col-center-1041 {
    display: flex !important;
  }

  .header-col-3-1041,
  .header-col-4-1041 {
    display: flex !important;
  }
}

/*Mobilne: */
@media (max-width: 768px) {

  /* Zmniejszone logo */
  .logo-mobile-1041 {
    width: 250px !important;
    height: auto;
  }

  /* Ikona hamburgera */
  .mobile-menu-toggle-1041 {
    display: block;
    margin-left: auto;
    cursor: pointer;
  }

  .hamburger-icon-1041 {
    font-size: 36px;
    color: #fff;
  }

  /* Dropdown menu po kliknięciu hamburgera */
  .mobile-menu-dropdown-1041 {
    display: none;
    background-color: #000;
    width: 100%;
    padding: 20px 0;
  }

  .mobile-menu-dropdown-1041.active {
    display: block;
  }

  .mobile-menu-dropdown-1041 ul.menu-top1-1041 {
    padding: 0 0 10px 1em;
    line-height: 0px;
  }
	
  /* Ukryj menu desktopowe */
  .header-col-center-1041 {
    display: none;
  }

  /* Ukryj ikony i flagi */
  .header-col-3-1041,
  .header-col-4-1041 {
    display: none;
  }
}

/*//////////// WIERSZ DÓŁ */
.header-bottom-row-1041 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Lewa kolumna z menu */
.header-bottom-left-1041 {
  flex: 1;
}

/* Menu2 */
.menu-top2-1041 {
  display: flex;
  gap: 40px;
  list-style: none !important;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 300;
	text-transform: uppercase;
}

.header-bottom-row-1041 ul.menu-top2-1041 {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.menu-top2-1041 li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.menu-top2-1041 li::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px; 
  height: 20px;
}

.menu-top2-1041 li::marker {
  display: none;
}

.menu-top2-1041 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-top2-1041 a:hover {
  color: #ff6600;
}

/*//////// SUBMENU 1*/
/* strzałka prawo */
.menu-top2-1041 li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #ffb351;
  font-size: 11px;
  line-height: 1;
}

.menu-top2-1041 li.menu-item-has-children::before {
  content: none;
  padding-left: 0px;
}

.menu-top2-1041 li:not(.menu-item-has-children) {
  padding-left: 18px;
}

.menu-top2-1041 li {
  position: relative;
}

/* strzałka dół */
.menu-top2-1041 li.menu-item-has-children > a::before {
  content: "▼";
  color: #ffb351;
  font-size: 10px;
  display: inline-block;
  margin-right: 8px;
  transform: translateY(-1px);
}

/*submenu lista*/
.menu-top2-1041 li ul {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  width: 320px;
  background-color: #292825;
  padding: 20px;
  margin-top: 0;
  z-index: 9999;
  list-style: none;
}

.menu-top2-1041 li:hover > ul {
  display: block;
}

/*każda pozycja submenu*/
.menu-top2-1041 li ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  min-width: 100%; 
}

.menu-top2-1041 li ul li.menu-item-has-children {
  padding-left: 0;
}

.menu-top2-1041 li ul li.menu-item-has-children > a {
  display: block;
  width: 100%;
  padding: 0;
}

/*strzałka zamiast kropki w submenu*/
.menu-top2-1041 li ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #ffb351;
  font-size: 11px;
  line-height: 1;
}

/*linki teksty*/
.menu-top2-1041 li ul li a {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

/*hover*/
.menu-top2-1041 li ul li a:hover {
  color: #ff6600;
}

/* Prawa kolumna z przyciskiem */
.header-bottom-right-1041 {
  flex-shrink: 0;
}

/* Styl przycisku */
.btn-wycena-1041 {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ffb351;
  padding: 7px 20px;
  color: #ffb351;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .btn-wycena-1041 {
    padding: 7px;
  font-weight: 300;
  }
}

.btn-wycena-1044 {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ffb351;
  padding: 7px 20px;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #ffb351;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin-right: 5px;
}

/* Hover efekt */
.btn-wycena-1044:hover {
  background-color: #ff9000;
  border: 1px solid #ff9000;
  color: #000;
}

/* Hover efekt */
.btn-wycena-1041:hover {
  background-color: #ff9000;
  color: #000;
}

.header-bottom-right-1041 a.btn-wycena-1041:not(:last-child) {
  margin-right: 5px;
}

/*Desktop: */
.menu2-desktop,
.buttons-desktop-1152 {
  display: block;
}

.buttons-mobile-1152 {
  display: none;
}

/*Mobilne: */
@media (max-width: 768px) {
  .menu2-desktop,
  .buttons-desktop-1152 {
    display: none;
  }

.buttons-mobile-1152 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
	
.buttons-mobile-1152 {
  justify-content: center;
}
	
.header-bottom-row-1041 {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

/* SLAJDER MAIN PAGE */
/* =============================== */
/* Wymusza brak nadmiernej szerokości slidera */
.hero1306,
.hero-bg1306,
.hero-overlay1306 {
  max-width: 100%;

}

/*do slajdera*/
.hero1306 {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
	z-index:1;
}

.hero-bg1306 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

/*o firmie*/
.hero-static-bg1 {
  background-image: url('/wp-content/uploads/2025/06/firma-tabun.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*transport*/
.hero-static-bg3 {
  background-image: url('/wp-content/uploads/2025/06/transport-cysterny-substancje-plyny.jpg');
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
}

/*uslugi*/
.hero-static-bg4 {
  background-image: url('/wp-content/uploads/2025/06/uslugi-dla-transportu-drogowego.jpg');
  background-size: cover;
background-position: center;
  background-repeat: no-repeat;
}

/*strefa przewoznika*/
.hero-static-bg5 {
  background-image: url('/wp-content/uploads/2025/06/zlecenia-transportowe.jpg');
  background-size: cover;
background-position: center;
  background-repeat: no-repeat;
}

/*aktualnosci*/
.hero-static-bg6 {
  background-image: url('/wp-content/uploads/2025/09/firma-tabun.jpg');
  background-size: cover;
background-position: center;
  background-repeat: no-repeat;
}

/*kontakt*/
.hero1306-2 {
  width: 100vw;
  height: 60vh;
  position: relative;
  overflow: hidden;
	z-index:1;
}

.hero-static-bg2 {
  background-image: url('/wp-content/uploads/2025/06/kontakt-tabun.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/*kolor transparent*/
.hero-overlay1306 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}

/*gradient*/
.hero-overlay1306-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
background: linear-gradient(
  45deg,
  rgba(0, 0, 0, 0.8) 0%,
  rgba(0, 0, 0, 0.5) 40%,
  rgba(0, 0, 0, 0) 100%
);
}

.hero-overlay1306-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 30%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.slider-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
	padding-top: 0;
}

.slider-inner1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.slide1554 {
  display: none;
  width: 100%;
  max-width: 940px;
  margin: 450px 0 0;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.slide1554.active {
  display: block;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/*h2 slider */
.hero-heading1306 {
  font-size: 60px;
	font-weight:700;
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  color: #f3d7b2;
  text-shadow: 0.04em 0.04em 0.03em rgba(0, 0, 0, 0.61);
	  display: inline-flex;
  align-items: center;
}

.slider-inner1280 h2::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 4px;
  background-color: #ff6600;
	margin-top:40px;
	margin-left:5px;
}


/*h3 slider*/
.hero-content1306 h3,
.slide1554 h3 {
  font-size: 28px;
	font-weight:400;
  margin: 0 0 15px;
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  color: #fff;
  text-shadow: 0.04em 0.04em 0.03em rgba(0, 0, 0, 0.61);
text-transform: uppercase;
}

.separator1306 {
  width: 160px;
  height: 2px;
  background-color: #f3d7b2;
  margin-bottom: 20px;
}

.hero-text1306 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
	font-weight:300;
}

.buttons1306 {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn1306 {
  border: 1px solid white;
  color: white;
  padding: 15px 30px !important;
	border-radius:10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
	  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
	letter-spacing:1px;
}

.btn1306:hover {
  background: #ff6600;
  border-color: #ff6600;
  color: white;
}

.slider-dots1306 {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-left: 0px;
  padding-right: 20px;
  max-width: 800px;
  width: 100%;
}

.dot1554 {
  width: 10px;
  height: 10px;
  background-color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.dot1554.active {
  background-color: #ff6600;
}

@media screen and (max-width: 768px) {
  .slide1554 {
    margin-top: 200px;
    padding: 0 15px;
  }

	
  h2.hero-heading1306 {
    font-size: 30px !important;
  }

  h3.hero-heading1306 {
    font-size: 20px !important;
  }
	
	.hero-text1306 {
  font-size: 14px;
  line-height: 1.5;
}
	
  .btn1306 {
    padding: 12px 24px;
    font-size: 16px;
  }

  .slider-dots1306 {
    padding-left: 20px !important;
    padding-right: 0;
    justify-content: flex-start;
  }

	.slider-inner1280 h2::after {
			display: none;}
	
  .buttons1306 {
    flex-direction: column;
    align-items: stretch;
  }

  .btn1306 {
    width: 100%;
    text-align: center;
  }
}



/* GENERAL STYLE */
/* =============================== */
/*pod nagłówkiem*/
.separator-1910 {
  width: 60px;
  height: 2px;
  background-color: #ff6600;
	margin-top:5px;
	margin-bottom: 30px;
}

/*link*/
.rm-1914 {
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block; 
}

/*przycisk*/
.btn1947 {
  border: 1px solid #ff6600;
  color: #ff6600;
	background: transparent;
  padding: 15px 30px !important;
	border-radius:10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
	  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
	letter-spacing:1px;
	line-height: 20px !important;
}

.btn1947:hover {
  background: #ff6600;
  border-color: #ff6600;
	color:#fff;
}

/*przyciski*/
.btn1947-2 {
  border: 1px solid #000;
  color: #000;
	background: transparent;
  padding: 15px 30px !important;
  border-radius:10px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
	  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
	letter-spacing:1px;
	line-height: 20px !important;
}

.btn1947-2:hover {
  background: #000;
  border-color: #000;
	color:#ff6600;
}

/* Domyślnie – przyciski obok siebie */
.przyciski-flex-1017 {
  display: flex;
  flex-direction: row;
}

.przyciski-flex-1017 .btn1947 {
  margin-right: 10px;
}

.przyciski-flex-1017 .btn1947:last-child {
  margin-right: 0;
}

/* Mobilne – przyciski jeden pod drugim, mniejszy odstęp */
@media (max-width: 768px) {
  .przyciski-flex-1017 {
    flex-direction: column;
    gap: 10px;
  }
  .przyciski-flex-1017 > * {
    margin: 0 !important;
  }

.btn1947 {
    width: 100%;
    margin-bottom:20px;
    text-align: center;
  }
	
.btn1947-2 {
    width: 100%;
    margin: 0px;
    text-align: center;
  }
}





.sepd-0944 {
  width: 100%;
  border-top: 1px dashed #999;
  margin-bottom: 10px;
}

/* Domyślnie (desktop) row style */
.col-five-0925 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.col-five-0925 > .et_pb_column {
  margin: 0 !important;
  padding: 10px 20px !important;
  flex: 1;
}

/* Mobilne: 2 kolumny w rzędzie z przerwą 10px row style */
@media (max-width: 768px) {
  .col-five-0925 {
    gap: 10px;
  }

  .col-five-0925 > .et_pb_column {
    width: calc(50% - 5px) !important;
    flex: none;
    padding: 10px !important;
    box-sizing: border-box;
  }

  .col-five-0925 > .et_pb_column:nth-child(2n+1) {
    clear: left;
  }
}



/* Desktop */
.three-col-1446 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.three-col-1446 > .et_pb_column {
  margin: 0 !important;
  padding: 10px 20px !important;
  box-sizing: border-box;
}

/* Pierwsze 2 kolumny jak w układzie 5-kolumnowym */
.three-col-1446 > .et_pb_column:nth-child(1),
.three-col-1446 > .et_pb_column:nth-child(2) {
  flex: 1 1 calc(20% - 10px); /* odpowiada szerokości jednej kolumny z układu 5 */
  max-width: calc(20% - 10px);
}

/* Trzecia kolumna = szerokość trzech kolumn z układu 5 */
.three-col-1446 > .et_pb_column:nth-child(3) {
  flex: 1 1 calc(60% - 10px);
  max-width: calc(60% - 10px);
}

/* Mobile: tylko pierwsze 2 kolumny po 50%, trzecia znika */
@media (max-width: 768px) {
  .three-col-1446 > .et_pb_column:nth-child(1),
  .three-col-1446 > .et_pb_column:nth-child(2) {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .three-col-1446 > .et_pb_column:nth-child(3) {
    display: none;
  }
}






/*hover zoom obrazka w kolumnie*/
.zoom-col-1306 {
  overflow: hidden;
  position: relative;
}

.zoom-col-1306 img {
  transition: transform 0.8s ease;
  display: block;
  width: 100%;
  height: auto;
}

.zoom-col-1306:hover img {
  transform: scale(1.1);
}

/*box atuty*/
.box-atuty-0817 h4 {font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
text-transform:uppercase}

.box-atuty-0817:hover h4 {color:#ff6600}

/*lista*/
ul.list-1244 {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.list-1244 li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #ff6600; 
}

.list-1244 .ico-1244 {
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background-color: #ff6600;
  border-radius: 50%;
}

.list-1244 .ico-1244::before {
  content: '✔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

/* Nadpisanie koloru tekstu dla drugiego stylu */
ul.list-1244.list-1245 li {
  color: #545454 !important; 
}

/*header text*/
.header-text-0934 h1 {
  font-size: 60px;
	font-weight:700;
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  color: #f3d7b2;
  text-shadow: 0.04em 0.04em 0.03em rgba(0, 0, 0, 0.61);
	  display: inline-flex;
  align-items: center;
}

.header-text-0934 h1::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 4px;
  background-color: #ff6600;
	margin-top:40px;
	margin-left:5px;
}

.header-text-0934 p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
	font-weight:300;
}

@media screen and (max-width: 768px) {
.header-text-0934 h1 {
    font-size: 32px;
}
.header-text-0934 h2::after {
			display: none;}
	
.header-text-0934 p {
  font-size: 14px !important;
	line-height: 1.5;}
	
}

/* zamienia kolumny row góra/dół */
@media (max-width: 768px) {
.row-mobch-0955 {
    display: flex;
    flex-direction: column;
  }

.row-mobch-0955 .et_pb_column:nth-child(1) {
    order: 2;
  }

.row-mobch-0955 .et_pb_column:nth-child(2) {
    order: 1;
  }
}

/* tabela */
.tabela-0844-wrapper {
  overflow-x: auto;
  position: relative;
  margin-top: 20px;
  -webkit-overflow-scrolling: touch; /* płynne przewijanie na iOS */
}

.tabela-0844 {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  table-layout: fixed;
}

.tabela-0844 th, .tabela-0844 td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
  width: 33%;
}

.tabela-0844 th {
  background-color: #444;
  color: #fff !important;
  text-transform: uppercase;
}

.tabela-0844 tr:nth-child(even) {
  background-color: #f9f9f9; /* jasnoszary */
}

.tabela-0844 tr:nth-child(odd) {
  background-color: #ffffff; /* biały */
}

.tabela-0844 tr:hover {
  background-color: #f1f1f1;
}

.tabela-0844 td:first-child,
.tabela-0844 th:first-child {
  text-align: left;
  /* usunięto sticky i min-width */
}

@media screen and (max-width: 768px) {
  .tabela-0844-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tabela-0844 {
    min-width: 700px; /* dostosuj do zawartości */
  }
}


/*naprawia margines row divi */
@media (max-width: 980px) {
    .et_pb_column {
        margin-bottom: 0px;
    }
}

/*mobilne odwrotnie wyświetla kolumny 1 i 2 */
@media (max-width: 767px) {
  .zamien-kolejnosc {
    display: flex !important;
    flex-direction: column !important;
  }

  .zamien-kolejnosc .kolumna1 {
    order: 2 !important;
  }

  .zamien-kolejnosc .kolumna2 {
    order: 1 !important;
  }
}


/*CCM okienko */
@media (min-width: 768px) {
  .cky-consent-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 1000 !important;
  }
}


@media (max-width: 768px) {
  .et_pb_section_1::after {
    display: none !important;
  }
}






















/* Submenu poziom 3 */
.menu-top2-1041 li ul li ul {
  display: none;
  position: absolute;
  left: calc(100% - 20px);
  top: 0;
  width: 300px;
  background-color: #292825;
  padding: 20px;
  margin-top: 0;
  z-index: 9999;
  list-style: none;
}

/* Pokaż poziom 3 przy hoverze */
.menu-top2-1041 li ul li:hover > ul {
  display: block;
}

.menu-top2-1041 li ul li {
  position: relative;
}


/* Każdy element w poziomie 3 – taki sam styl jak poziom 2 */
.menu-top2-1041 li ul li ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.menu-top2-1041 li ul li ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #ffb351;
  font-size: 11px;
  line-height: 1;
}

.menu-top2-1041 li ul li ul li a {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-top2-1041 li ul li ul li a:hover {
  color: #ff6600;
}


/* wycena form */
/* desktop 3 kolumny tylko dla trzech pól checkbox */
@media (min-width: 981px) {
    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_5.et_pb_contact_field_last,
    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_6.et_pb_contact_field_last {
        width: 33.3333% !important;
        float: left;
        clear: none !important;
        margin-bottom: 20px;
    }

    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_4.et_pb_contact_field_last {
        padding-right: 10px;
    }

    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_5.et_pb_contact_field_last {
        padding-left: 5px;
        padding-right: 5px;
    }

    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_6.et_pb_contact_field_last {
        padding-left: 10px;
    }
}

p.et_pb_contact_field {
	padding: 0 0 0 3% !important;}

/* Mobile – pełna szerokość */
@media (max-width: 980px) {
    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_4.et_pb_contact_field_last,
    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_5.et_pb_contact_field_last,
    .formularz_wycena .et_pb_contact_field.et_pb_contact_field_6.et_pb_contact_field_last {
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
    }

    .formularz_wycena .et_pb_contact_field_options_title {
        padding-top: 15px !important;
        padding-bottom: 5px !important;
    }

    .formularz_wycena .et_pb_contact_field_7 {
        padding-top: 25px !important;
    }

    .formularz_wycena .et_contact_bottom_container {
        float: none !important;
        justify-content: center !important;
        text-align: center !important;
        margin-top: 30px !important;
    }
}

