/*!
 * fullPage 4.0.37
 * https://github.com/alvarotrigo/fullPage.js
 *
 * @license GPLv3 for open source use only
 * or Fullpage Commercial License for commercial use
 * http://alvarotrigo.com/fullPage/pricing/
 *
 * Copyright (C) 2021 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
 */
 * {
  --sb-track-color: #232E33;
  --sb-thumb-color: #00ffff;
  --sb-size: 10px;
}

*::-webkit-scrollbar {
  width: var(--sb-size);
}

*::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 9px;
}

*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 9px;
  border: 2px solid #232E33;
}

@supports not selector(::-webkit-scrollbar) {
* {
      scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}
.aquamarin{
  color: #00ffff !important; 
}
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;

  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.fp-section {
  position: relative;
  -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box; /* <=28 */
  box-sizing: border-box;
  height: 100%;
  display: block;
}
.fp-slide {
  float: left;
}
.fp-slide,
.fp-slidesContainer {
  height: 100%;
  display: block;
}
.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}
.fp-table {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.fp-slidesContainer {
  float: left;
  position: relative;
}
.fp-controlArrow {
  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -khtml-user-select: none; /* webkit (konqueror) browsers */
  -ms-user-select: none; /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fp-prev {
  left: 15px;
}
.fp-next {
  right: 15px;
}
.fp-arrow {
  width: 0;
  height: 0;
  border-style: solid;
}
.fp-arrow.fp-prev {
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}
.fp-arrow.fp-next {
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}
.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}
#fp-nav {
  position: fixed;
  z-index: 100;
  top: 50%;
  opacity: 1;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translate3d(0, -50%, 0);
  pointer-events: none;
}
#fp-nav.fp-right {
  right: 17px;
}
#fp-nav.fp-left {
  left: 17px;
}
.fp-slidesNav {
  position: absolute;
  z-index: 4;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  left: 0 !important;
  right: 0;
  margin: 0 auto !important;
  pointer-events: none;
}
.fp-slidesNav.fp-bottom {
  bottom: 17px;
}
.fp-slidesNav.fp-top {
  top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}
.fp-slidesNav ul li {
  display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  pointer-events: all;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer;
}
#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}
#fp-nav ul li .fp-tooltip.fp-right {
  right: 20px;
}
#fp-nav ul li .fp-tooltip.fp-left {
  left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide {
  height: auto !important;
}

.fp-responsive .fp-is-overflow.fp-section {
  height: auto !important;
}

/* Tries to prevent overwrites #4657 */
.fp-enabled .fp-scrollable {
  overflow: visible;
  height: initial;
}

/* Used with autoScrolling: false */
.fp-scrollable.fp-responsive .fp-is-overflow.fp-section,
.fp-scrollable .fp-section,
.fp-scrollable .fp-slide {
  /* Fallback for browsers that do not support Custom Properties */
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.fp-scrollable.fp-responsive
  .fp-is-overflow.fp-section:not(.fp-auto-height):not([data-percentage]),
.fp-scrollable .fp-section:not(.fp-auto-height):not([data-percentage]),
.fp-scrollable .fp-slide:not(.fp-auto-height):not([data-percentage]) {
  /* Fallback for browsers that do not support Custom Properties */
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

/* Disabling vertical centering on scrollable elements */
.fp-overflow {
  justify-content: flex-start;
}
.fp-overflow {    bottom: 31px;
    position: absolute;
    width: 100%;
}

body:not(.fp-responsive) .fp-overflow {
  max-height: 100vh;
  max-height: 100dvh; /* fix for new browsers */
}

/* No scrollable when using auto-height */
.fp-scrollable .fp-auto-height .fp-overflow {
  max-height: none;
}

.fp-is-overflow .fp-overflow.fp-auto-height-responsive,
.fp-is-overflow .fp-overflow.fp-auto-height,
.fp-is-overflow .fp-overflow {
  overflow-y: auto;
}
.fp-overflow {
  outline: none;
}

.fp-overflow.fp-table {
  display: block;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-overflow {
  height: auto !important;
  min-height: auto !important;
}

/*Only display content to screen readers*/
.fp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Customize website's scrollbar like Mac OS
Not supports in Firefox and IE */
.fp-scroll-mac .fp-overflow::-webkit-scrollbar {
  background-color: transparent;
  width: 9px;
}
.fp-scroll-mac .fp-overflow::-webkit-scrollbar-track {
  background-color: transparent;
}
.fp-scroll-mac .fp-overflow::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  border: 4px solid transparent;
}
.fp-warning,
.fp-watermark {
  z-index: 9999999;
  position: absolute;
  bottom: 0;
}
.fp-warning,
.fp-watermark a {
  text-decoration: none;
  color: #000;
  background: rgba(255, 255, 255, 0.6);
  padding: 5px 8px;
  font-size: 14px;
  font-family: arial;
  color: black;
  display: inline-block;
  border-radius: 3px;
  margin: 12px;
}
.fp-noscroll .fp-overflow {
  overflow: hidden;
}

/*# sourceMappingURL=fullpage.css.map */

/* Custom fullpage overrides */
#fullpage {
  position: relative;
}

/* Fullpage navigation dots */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: #333;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  background: #0066cc;
}

/* Fullpage navigation position */
#fp-nav {
  right: 30px;
}

@media (max-width: 768px) {
  #fp-nav {
    right: 15px;
  }
}

/* kontakt */
//src/css/contact-form.css

/* Contact Form 7 - Custom Styling */

.wpcf7 {
  max-width: 500px;
  margin: 0 auto;
  padding: 35px 30px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 2px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 255, 0.15);
}

/* Form container */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Hidden fields */
.hidden-fields-container {
  display: none;
}

/* Input and textarea wrapper */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* All input fields and textarea */
.wpcf7-form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

/* Placeholder styling */
.wpcf7-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

/* Focus state */
.wpcf7-form-control:focus {
  border-color: #00ffff;
  background: rgba(0, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
}

/* Invalid field styling */
.wpcf7-form-control.wpcf7-not-valid {
  border-color: rgba(255, 77, 77, 0.6);
  background: rgba(255, 77, 77, 0.05);
}

/* Textarea specific styling */
.wpcf7-textarea {
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
}

/* Submit button */
.wpcf7-submit {
  padding: 14px 35px;
  background: linear-gradient(135deg, #00ffff 0%, #00ccff 100%);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

.wpcf7-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.wpcf7-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.3);
}

.wpcf7-submit:hover::before {
  width: 300px;
  height: 300px;
}

.wpcf7-submit:active {
  transform: translateY(0);
}

/* Loading spinner */
.wpcf7-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #00ffff;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Response messages */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.wpcf7-mail-sent-ok {
  background: rgba(0, 255, 128, 0.1);
  border: 1px solid rgba(0, 255, 128, 0.3);
  color: #00ff80;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff6b6b;
}

/* Screen reader only content */
.screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* Paragraph spacing */
.wpcf7-form p {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wpcf7 {
    padding: 28px 20px;
    border-radius: 12px;
    max-width: 450px;
  }

  .wpcf7-form-control {
    padding: 12px 16px;
    font-size: 14px;
  }

  .wpcf7-submit {
    padding: 12px 28px;
    font-size: 14px;
  }

  .wpcf7-textarea {
    min-height: 110px;
  }
}

@media (max-width: 480px) {
  .wpcf7 {
    padding: 22px 16px;
  }

  .wpcf7-form {
    gap: 14px;
  }

  .wpcf7-submit {
    width: 100%;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .wpcf7-form-control,
  .wpcf7-submit,
  .wpcf7-submit::before {
    transition: none;
  }

  .wpcf7-spinner {
    animation: none;
    border-top-color: #00ffff;
    border-left-color: #00ffff;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .wpcf7-form-control {
    border-width: 3px;
  }

  .wpcf7-submit {
    border: 3px solid #00ffff;
  }
}

/* Contact Section Styling */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #fff;
    background: transparent;
    height: 550px;
    overflow: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00ffff 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-phone {
    font-size: 38px;
    font-weight: 700;
    color: #00ffff;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.contact-phone::before {
    content: "📞";
    font-size: 34px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 255, 255, 0.25);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3::before {
    font-size: 24px;
}

.contact-info-card.consultation h3::before {
    content: "💬";
}

.contact-info-card.address h3::before {
    content: "📍";
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 12px 0;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-card strong {
    color: #fff;
    font-weight: 600;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.address-line::before {
    content: "→";
    color: #00ffff;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-form-wrapper {
    margin: 60px 0;
}

.contact-form-wrapper h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 30px;
}

.company-footer {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
}

.company-footer h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.company-footer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
}

.company-footer .company-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.company-footer .company-details span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.company-footer .company-details span strong {
    color: #00ffff;
    font-weight: 600;
}

/* Company Logo in Footer */
.company-footer .company-logo {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.company-footer .company-logo img {
    max-width: 180px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.company-footer .company-logo img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

/* Created By Footer */
.created-by {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.created-by a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.created-by a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}



/* Responsive Design */
.ios div[data-anchor="przyklady"] h2 {
font-size:20px;
}
.ios div[data-anchor="przyklady"] ul li {
font-size:15px;
}



@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-header h2 {
        font-size: 36px;
    }

    .contact-phone {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 40px 15px;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-phone {
        font-size: 26px;
        flex-direction: column;
        gap: 8px;
    }

    .contact-phone::before {
        font-size: 28px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-info-card h3 {
        font-size: 20px;
    }

    .contact-form-wrapper h3 {
        font-size: 26px;
    }

    .company-footer {
        padding: 25px 20px;
    }

    .company-footer h4 {
        font-size: 20px;
    }

    .company-footer .company-details {
        flex-direction: column;
        gap: 10px;
    }

    .company-footer .company-logo img {
        max-width: 140px;
    }

    .created-by {
        margin-top: 30px;
        padding: 20px;
        font-size: 12px;
    }
}