body{outline:3px solid red!important;}





/* Inter – zmienna grubość */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVar.woff2') format('woff2'),
       url('../fonts/InterVar.ttf') format('truetype');
  font-weight: 100 900;           /* zakres dla variable fonta */
  font-style: normal;
  font-display: swap;
}

/* Inter Italic – zmienna grubość */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/InterVarItalic.woff2') format('woff2'),
       url('../fonts/InterVarItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* globalny młotek */
html, body,
h1, h2, h3, h4, h5, h6,
button, input, textarea, select,
.sppb-btn, .sppb-section-title, .sppb-title-heading,
.sp-megamenu-parent a, .sp-module-title, .sp-page-title,
.sppb-addon-title, .sppb-media-content, .sppb-cta-title {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* Jeśli coś ustawia „roboto” wprost w SPB, zerujemy to: */
*[style*="font-family"] {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}





#sp-logo {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    width: auto !important;
}

#sp-logo .sp-column {
    display: flex !important;
    justify-content: flex-start !important;
}

#sp-logo img {
    display: block;
    margin-left: 0;
    margin-right: auto;
    height: auto;
}

@media (max-width: 1199px) {
    #sp-header #sp-logo img {
        display: none !important;
    }
}

#sp-header-topbar .container-inner>.row {
    min-height: 100px;
}

.social-wrap {
    display: flex !important;
    align-items: center !important;
}

.social-wrap ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-wrap li {
    margin-right: 20px;
}

/* Corrected and improved button styles */
#sp-social .social-wrap .przycisk {
    background-color: rgb(20, 197, 0);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 20px;
    line-height: 1.5;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all .15s ease-in-out;
    cursor: pointer;
    display: inline-block; /* Key: Important for proper ::before positioning */
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
    position: relative; /* Key: Necessary for absolute positioning of ::before */
    overflow: hidden; /* Prevents text from overflowing during hover transition */
}

#sp-social .social-wrap .przycisk .przycisk-tekst {
    position: relative;
    z-index: 1; /* Key: Ensures text is on top of the ::before layer */
    /* Add any text-specific styles here, e.g., font-family */
}

#sp-social .social-wrap .przycisk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(20, 197, 0);
    border-radius: 5px;
    transition: all .15s ease-in-out;
    z-index: 0; /* ::before is below the text */
}

#sp-social .social-wrap .przycisk:hover::before {
    background-color: #0056b3;
}


@media (max-width: 1200px) {
  #sp-social .social-wrap .przycisk {
    display: none;
  }
}















#cf_1 { /* Selektor dla głównego kontenera formularza */
  display: flex; /* Włącza elastyczny układ */
  justify-content: center; /* Wyśrodkowuje zawartość poziomo */
  width: 100%; /* Zajmuje całą dostępną szerokość */
  margin: 0 auto; /* Dodaje marginesy automatyczne, aby wyśrodkować blok */
}

/* Opcjonalnie: Dodaj marginesy do formularza wewnątrz kontenera */
#cf_1 form {
  width: auto; /* Automatyczna szerokość formularza */
  max-width: 600px; /* Maksymalna szerokość formularza (dostosuj według potrzeb) */
  margin: 20px; /* Marginesy wokół formularza */
}

/* Opcjonalnie: Dodaj style dla responsywności */
@media (max-width: 768px) { /* Dla mniejszych ekranów */
  #cf_1 form {
    max-width: 95%; /* Maksymalna szerokość formularza na telefonach */
  }
}