body {
  color: #000;
  background-color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Inter", sans-serif;
}

.przyciski .prev-step,
.przyciski .submit-form {
  display: none;
}
.przyciski { visibility: hidden; }

img {
  max-width: 100%;
  height: auto;
}

.nav > li > a:hover, .nav > li > a:focus {
  background: none;
  outline: none;
}

::selection {
  color: #fff;
  background-color: #004f9e;
}

::-moz-selection {
  color: #fff;
  background-color: #004f9e;
}

input:focus, button:focus, select:focus, textarea:focus{
  outline: none;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
}

.button-b{
  cursor: pointer;
}

h1 {
  font-family: "Inter", sans-serif;
  color: #000;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 60px */
}

h2 {
  font-family: "Inter", sans-serif;
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}

h3 {
  color: #000;

text-align: center;
font-family: Inter;
font-size: 28px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-bottom: 1rem;
}

h4 {
  color: #000;

  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}

h5 {
  font-family: "Inter", sans-serif;
  color: #000;

text-align: center;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 180%; /* 32.4px */
}

h6 {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: #080808;
}

a:hover {
  text-decoration: none;
  color: #0071E3;
}

a:focus {
  text-decoration: none;
  outline: none;
}

a:visited {
  text-decoration: none;
  outline: none;
}

table{
  width: 100%;
}

table td, table th{
  padding: 8px 6px;
  border-bottom: 1px solid #f1f1f1;
}

table tr:hover{
background-color: #f8f8f8;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

table{
  border-collapse: collapse;
  border-spacing: 0px;
}

table th{
  font-weight: 700;
}

.zoomIt{
  position: relative;
  overflow: hidden;
  display: block;
}

.zoomIt div, .zoomIt img{
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.zoomIt:hover > div, .zoomIt:hover > img{
  transform:scale(1.1); 
  -webkit-transform:scale(1.1); 
  -moz-transform:scale(1.1); 
  -o-transform:scale(1.1); 
}

.p-top {
  padding-top: 60px;
}

.p-bottom {
  padding-bottom: 60px;
}
.m-top {
  margin-top: 60px;
}

.m-bottom {
  margin-bottom: 60px;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-y: scroll;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: start;
  margin-top: 28px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 26px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
}

.menu-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 99;
  margin-right: 10px;
}

.menu-bar::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background-color: #ffffff; /* Białe tło */
  border-radius: 8px;        /* Zaokrąglone rogi */
  z-index: -1;
}

.bar {
  width: 100%;
  height: 2px;
  background-color: #0071E3;
  transition: transform 0.3s ease-in-out;
}

/* .sticky .bar{
  background-color: #fff;
} */

.menu-open .bar:first-child {
  transform: translateY(9px) rotate(45deg);
}

.menu-open .bar:nth-child(2) {
  opacity: 0;
}

.menu-open .bar:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.bar:nth-child(2) {
  width: 30px;
}

.menu, .menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .menu, header .menu ul, footer .menu, footer .menu ul {
  flex-direction: row;
}

.overlay .menu, .overlay .menu ul {
  flex-direction: column;
}

/*rwd*/
@media (max-width: 1025px) {

}
@media (max-width: 992px) {
  
header .button-a {
  white-space: nowrap;
  padding: 10px 22px;
  font-size: 12px;
  background-color: transparent;
  color: #0071E3;
  border: 1px solid #0071E3;
  border-radius: 50px;
  box-sizing: border-box;
}
}
@media (max-width: 600px) {

  .offer-image img {
    height: 180px !important;
    margin-bottom: 10px;
    object-fit: cover;
}

.heeader .button-b {
  font-size: 13px !important;
}

  .p-top {
    padding-top: 60px;
  }
  .p-bottom {
    padding-bottom: 60px;
  }
  .m-top {
    margin-top: 60px;
  }
  .m-bottom {
    margin-bottom: 60px;
  }
  header .button-a {
    white-space: nowrap;
    padding: 5px 10px;
    font-size: 10px;
    background-color: transparent;
    color: #0071E3;
    border: 1px solid #0071E3;
    border-radius: 50px;
    box-sizing: border-box;
}

.offer-tile h3{
  font-size: 14px !important;
}

header .button-b{
  white-space: nowrap;
  padding: 5px 10px;
  background-color: #0071E3;
  color: #fff;
  font-size: 10px;
  border: 1px solid #0071E3;
  border-radius: 50px;
  box-sizing: border-box;
  margin-left: 0 !important;
}

 .button-a {
  white-space: nowrap;
  padding: 5px 10px;
  font-size: 12px;
  background-color: transparent;
  color: #0071E3;
  border: 1px solid #0071E3;
  border-radius: 50px;
  box-sizing: border-box;
}

.button-b{
white-space: nowrap;
padding: 5px 10px;
background-color: #0071E3;
color: #fff;
font-size:12px !important;
border: 1px solid #0071E3;
border-radius: 50px;
box-sizing: border-box;
margin-left: 0 !important;
}


.kafelki h3 {
  color: #FFF;
  font-family: Inter;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


h3{
  font-size: 20px !important;
}


p{
  font-size: 13px !important;
}


.button-f{
  white-space: nowrap;
  padding: 20px 45px;
  background-color: #000;
  font-size: 11px !important;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 50px;
  box-sizing: border-box;
  transition: opacity 0.5s ease-in-out, background-color 0.3s ease;
  opacity: 1; /* Ustawienie początkowe */
}
}

@media (max-width: 430px) {

  .gradient .offers-container {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important; /* 4 kolumny */
    gap: 20px; /* Odstępy między kafelkami */
    padding: 20px;
  }

  .watermark {
    max-width: 280px !important;
}

.tB a:first-child{
    display: none;
}
.tB a:nth-child(2){
    display: none;
}
  
}


@media (max-width: 430px) {

  .offer-image img {
    height: 248px !important;
    margin-bottom: 10px;
    object-fit: cover;
}
}
.konfigurator-content {
  position: relative;
  min-height: 290px; /* Ustaw minimalną wysokość dla wszystkich kroków */
  /* overflow: visible;
  overflow-y: scroll !important; */
}

.konfigurator-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.konfigurator-step.active {
  opacity: 1;
  transform: translateX(0);
}

.button-d.active {
  border-color: #007bff;
  color: #007bff;
}

.button-d {
  transition: .3s ease;
}

.summary-list{
  flex-direction: column;
}



.wpcf7-acceptance .wpcf7-list-item-label{
  font-size: 12px !important;
	margin-left: 8px;
}


.wpcf7-acceptance .wpcf7-list-item{
  margin-left: 0px !important;
}

.summary-list .col-lg-7 p:first-child{
  font-size: 14px !important;
}

.wpcf7 .wpcf7-form-control{
  padding: 0.8em;
}

.wpcf7-form-control-wrap input{
  border: none;
  border-bottom: 2px solid #ebebeb;
}

.wpcf7-list-item input{
  margin-right: 1rem;
}

.custom-modal {
  display: none; /* Ukryj modal domyślnie */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2); /* Fade out */
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 80%;
  max-width: 840px;
  background: white;
  padding: 3em;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.5s ease-in-out forwards;
}

.custom-modal.active {
  display: block; /* Pokaż modal, gdy aktywowany */
}

.modal-header img{
  max-width: 200px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.custom-modal.closing .modal-content {
  animation: slideDown 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.2);
  }
}

@keyframes slideUp {
  from {
      bottom: -100%;
  }
  to {
      bottom: 20%;
  }
}


/* Animacja zjeżdżania w dół */
@keyframes slideDown {
  from {
      bottom: 20%;
  }
  to {
      bottom: -100%;
  }
}

.case-study-extend h1{
  font-size: 32px;

}

.wpcf7-form-control-wrap textarea{
  border: none;
  border-bottom: 2px solid #ebebeb;
  width: 386px;
}


.black-glass{

  background: #000;

  color: white; /* Białe napisy */
}

.disclaimer{
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}

.logo-bottom{
  max-width: 200px; 
}

@media (max-width: 400px){
  .logo-bottom{
    max-width: 140px; 
  }
}


/* Podświetlanie aktualnie wybranej pozycji w menu głównym */
li.mega-current-menu-item > a.mega-menu-link,
li.mega-current-menu-ancestor > a.mega-menu-link,
li.mega-current-menu-parent > a.mega-menu-link,
li.mega-current_page_ancestor > a.mega-menu-link{
  color: #0071E3 ;
}

/* Podświetlanie aktualnie wybranego elementu w sub-menu 
   (np. tego z aria-current="page") */
li.mega-current-menu-item > a[aria-current="page"] {
  color: #0071E3 !important;
}

/* Podświetlanie aktualnie wybranej pozycji w menu głównym */
.sticky li.mega-current-menu-item >  a.mega-menu-link,
.sticky li.mega-current-menu-ancestor > a.mega-menu-link,
.sticky li.mega-current-menu-parent > a.mega-menu-link,
.sticky li.mega-current_page_ancestor > a.mega-menu-link{
    color: #0071E3 !important ;
}

/* Podświetlanie aktualnie wybranego elementu w sub-menu 
   (np. tego z aria-current="page") */
.sticky li.mega-current-menu-item > a[aria-current="page"] {
  color: #0071E3 !important;
}




#mega-menu-item-26.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-item-26.mega-current-menu-parent > a.mega-menu-link {
  background-color: transparent !important;
  color: inherit !important;
}

/* Wyłącz podświetlanie dla KALKULATORY (ID = mega-menu-item-624 np.) */
#mega-menu-item-624.mega-current-menu-ancestor > a.mega-menu-link,
#mega-menu-item-624.mega-current-menu-parent > a.mega-menu-link {
  background-color: transparent !important;
  color: inherit !important;
}

.sticky #mega-menu-item-26.mega-current-menu-ancestor > a.mega-menu-link,
.sticky #mega-menu-item-26.mega-current-menu-parent > a.mega-menu-link {
  background-color: transparent !important;
  color: #fff !important;
}

/* Wyłącz podświetlanie dla KALKULATORY (ID = mega-menu-item-624 np.) */
.sticky #mega-menu-item-624.mega-current-menu-ancestor > a.mega-menu-link:hover,
.sticky #mega-menu-item-624.mega-current-menu-parent > a.mega-menu-link:hover {
  background-color: inherit !important;
  color: #fff !important;
}
.sticky #mega-menu-item-26.mega-current-menu-ancestor > a.mega-menu-link:hover,
.sticky #mega-menu-item-26.mega-current-menu-parent > a.mega-menu-link:hover {
  background-color: inherit !important;
  color: #fff !important;
}

/* Wyłącz podświetlanie dla KALKULATORY (ID = mega-menu-item-624 np.) */
.sticky #mega-menu-item-624.mega-current-menu-ancestor > a.mega-menu-link,
.sticky #mega-menu-item-624.mega-current-menu-parent > a.mega-menu-link {
  background-color: transparent !important;
  color: #fff !important;
}

.sticky .mega-menu-item-624.mega-toggle-on a{
  color: #000;

}

.wpcf7 form .wpcf7-response-output {
display: none; 
}


.wpcf7-not-valid-tip {

  font-size: 10px !important;
}

.wpcf7-form p{
  margin-bottom: 8px;
}

.consent-container .toggle-consent {
  cursor: pointer;
  color: blue;
  text-decoration: underline;
  font-size: 0.9em;
  margin-left: 5px;
}


.wpcf7-list-item-label{
  line-height: 2;
  display: flex;
}
.wpcf7-list-item label input{
  margin-bottom: auto;
}
.wpcf7-list-item label{
  display: flex;
}

.single-post strong {
font-weight: bold !important
}


.page-id-784 .newsletter{
  display: none;
}

.newsletter-page{
  height: 80vh;
}

.newsletter-page h2{
  margin-bottom: 1rem;
}

/* #kalkulator-hp .bar-chart{
  display: none;
} */


.blog-post h1{
  font-family: "Inter", sans-serif;
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 2rem;
}
.blog-post h2{
  font-family: "Inter", sans-serif;
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
}


.blog-post b{
  font-weight: 700;
}

.img-other-blog
  {
    border-radius: 20px;
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

.white-bcg{
  background-color: #fff;
}

input[type="checkbox"] {
  width: auto !important;
}

@media (max-width:600px){
  .bar-description {
    max-width: 77px !important;
}

#kalkulator-pv .right-col{
  min-height: 460px;
}
.right-col-form {
  padding: 0 !important;
}
}

.right-col-auto{
  height: 260px;
}
.inner [data-step="4"] h2 {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 180%; /* 43.2px */
}

#myNav .overlay-content .logo-small {
  transition: transform 0.5s ease;
}
/* Klasa dodawana przy scrollowaniu, która powoduje przesunięcie logo w górę */
#myNav .overlay-content .logo-small.scrolled {
  transform: translateY(-150px); /* Dostosuj wartość przesunięcia */
}


