.elementor-141 .elementor-element.elementor-element-ae522e7{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-ec0b72b *//* ==========================================================
   MARTA LAMPART — FOOTER
   ========================================================== */

#ml-footer {
  --ml-footer-white: #ffffff;
  --ml-footer-offwhite: #faf9f6;
  --ml-footer-graphite: #333333;
  --ml-footer-gray: #666666;
  --ml-footer-light-gray: #8a8a8a;
  --ml-footer-blue: #1c9bd8;
  --ml-footer-blue-deep: #157dae;
  --ml-footer-blue-tint: #eef8fc;
  --ml-footer-mustard: #f5b84c;
  --ml-footer-border: rgba(51, 51, 51, 0.11);
  --ml-footer-container: var(--ml-container, 1320px);
  --ml-footer-body: var(--ml-font-body, "Inter", sans-serif);
  --ml-footer-display: var(--ml-font-display, "Fraunces", serif);

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      48% 70% at 100% 0%,
      rgba(28, 155, 216, 0.08),
      transparent 68%
    ),
    radial-gradient(
      38% 55% at 0% 100%,
      rgba(245, 184, 76, 0.1),
      transparent 70%
    ),
    var(--ml-footer-offwhite);

  color: var(--ml-footer-gray);
  font-family: var(--ml-footer-body);
}

#ml-footer,
#ml-footer *,
#ml-footer *::before,
#ml-footer *::after {
  box-sizing: border-box;
}

#ml-footer .ml-footer__accent {
  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--ml-footer-blue) 0%,
      var(--ml-footer-blue) 72%,
      var(--ml-footer-mustard) 72%,
      var(--ml-footer-mustard) 100%
    );
}

#ml-footer .ml-footer__inner {
  position: relative;
  z-index: 1;

  max-width: var(--ml-footer-container);
  margin: 0 auto;

  padding:
    clamp(4rem, 7vw, 6.5rem)
    clamp(1.25rem, 4vw, 3rem)
    1.5rem;
}

/* ==========================================================
   GŁÓWNY UKŁAD
   ========================================================== */

#ml-footer .ml-footer__main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

/* ==========================================================
   MARKA
   ========================================================== */

#ml-footer .ml-footer__brand {
  max-width: 350px;
}

#ml-footer .ml-footer__logo {
  display: inline-flex;
  align-items: center;

  text-decoration: none;
}

#ml-footer .ml-footer__logo img {
  display: block;
  width: clamp(200px, 18vw, 240px);
  height: auto;

  transition: transform 0.25s ease;
}

#ml-footer .ml-footer__logo:hover img {
  transform: translateY(-2px);
}

#ml-footer .ml-footer__description {
  max-width: 34ch;
  margin: 1.5rem 0 0;

  color: var(--ml-footer-gray);
  font-size: 0.96rem;
  line-height: 1.75;
}

#ml-footer .ml-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  margin-top: 1.7rem;
  padding: 0.82rem 1.35rem;

  border-radius: 999px;

  background: var(--ml-footer-blue);
  color: var(--ml-footer-white);

  box-shadow: 0 12px 25px -14px rgba(28, 155, 216, 0.8);

  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#ml-footer .ml-footer__cta svg {
  width: 15px;
  height: 15px;

  transition: transform 0.2s ease;
}

#ml-footer .ml-footer__cta:hover {
  background: var(--ml-footer-blue-deep);
  transform: translateY(-2px);

  box-shadow: 0 16px 28px -14px rgba(21, 125, 174, 0.75);
}

#ml-footer .ml-footer__cta:hover svg {
  transform: translateX(3px);
}

/* ==========================================================
   NAGŁÓWKI KOLUMN
   ========================================================== */

#ml-footer .ml-footer__heading {
  position: relative;

  margin: 0 0 1.5rem;
  padding-bottom: 0.8rem;

  color: var(--ml-footer-graphite);
  font-family: var(--ml-footer-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

#ml-footer .ml-footer__heading::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 34px;
  height: 3px;

  border-radius: 999px;

  background: var(--ml-footer-mustard);
}

/* ==========================================================
   LINKI
   ========================================================== */

#ml-footer .ml-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

#ml-footer .ml-footer__links a {
  position: relative;

  color: var(--ml-footer-gray);
  font-size: 0.93rem;
  line-height: 1.5;
  text-decoration: none;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

#ml-footer .ml-footer__links a::before {
  content: "";

  position: absolute;
  left: -14px;
  top: 0.65em;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--ml-footer-blue);

  opacity: 0;
  transform: translateX(-4px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

#ml-footer .ml-footer__links a:hover {
  color: var(--ml-footer-blue-deep);
  transform: translateX(5px);
}

#ml-footer .ml-footer__links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================
   KONTAKT
   ========================================================== */

#ml-footer .ml-footer__contact-block {
  color: var(--ml-footer-gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

#ml-footer .ml-footer__contact-block strong {
  display: block;
  margin-bottom: 0.6rem;

  color: var(--ml-footer-graphite);
  font-weight: 600;
  line-height: 1.55;
}

#ml-footer .ml-footer__contact-block address {
  margin: 0;
  font-style: normal;
}

#ml-footer .ml-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  margin-top: 1.35rem;
}

#ml-footer .ml-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;

  color: var(--ml-footer-gray);
  font-size: 0.92rem;
  line-height: 1.5;
  text-decoration: none;

  transition: color 0.2s ease;
}

#ml-footer .ml-footer__contact-item:hover {
  color: var(--ml-footer-blue-deep);
}

#ml-footer .ml-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  width: 27px;
  height: 27px;

  margin-top: -2px;

  border-radius: 50%;

  background: var(--ml-footer-blue-tint);
  color: var(--ml-footer-blue-deep);
}

#ml-footer .ml-footer__icon svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================
   GODZINY OTWARCIA
   ========================================================== */

#ml-footer .ml-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

#ml-footer .ml-footer__hours-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;

  font-size: 0.91rem;
  line-height: 1.5;
}

#ml-footer .ml-footer__hours-row span {
  color: var(--ml-footer-gray);
}

#ml-footer .ml-footer__hours-row strong {
  color: var(--ml-footer-graphite);
  font-weight: 600;
}

#ml-footer .ml-footer__company-data {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;

  margin-top: 1.5rem;
  padding-top: 1.3rem;

  border-top: 1px solid var(--ml-footer-border);
}

#ml-footer .ml-footer__company-data p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 0.8rem;

  margin: 0;

  font-size: 0.85rem;
  line-height: 1.5;
}

#ml-footer .ml-footer__company-data span {
  color: var(--ml-footer-light-gray);
}

#ml-footer .ml-footer__company-data strong {
  color: var(--ml-footer-graphite);
  font-weight: 600;
  text-align: right;
}

/* ==========================================================
   KONTO BANKOWE
   ========================================================== */

#ml-footer .ml-footer__bank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  margin-top: clamp(3rem, 5vw, 5rem);
  padding: 1.4rem 1.6rem;

  border: 1px solid rgba(28, 155, 216, 0.16);
  border-radius: 16px;



  

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#ml-footer .ml-footer__bank > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#ml-footer .ml-footer__bank-label {
  color: var(--ml-footer-light-gray);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

#ml-footer .ml-footer__bank strong {
  color: var(--ml-footer-graphite);
  font-size: 0.98rem;
  font-weight: 600;
}

#ml-footer .ml-footer__account {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  padding: 0.7rem 0.9rem;

  border: 1px solid var(--ml-footer-border);
  border-radius: 10px;

  background: var(--ml-footer-white);
  color: var(--ml-footer-graphite);

  font-family: var(--ml-footer-body);
  font-size: clamp(0.82rem, 1.2vw, 0.94rem);
  font-weight: 600;
  letter-spacing: 0.025em;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

#ml-footer .ml-footer__account:hover {
  border-color: rgba(28, 155, 216, 0.45);
  background: var(--ml-footer-blue-tint);
  color: var(--ml-footer-blue-deep);

  transform: translateY(-1px);
}

#ml-footer .ml-footer__account svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

#ml-footer .ml-footer__copy-label {
  color: var(--ml-footer-blue-deep);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==========================================================
   DOLNY PASEK
   ========================================================== */

#ml-footer .ml-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;

  margin-top: 1.5rem;
  padding-top: 1.5rem;

  border-top: 1px solid var(--ml-footer-border);

  color: var(--ml-footer-light-gray);
  font-size: 0.79rem;
  line-height: 1.5;
}

#ml-footer .ml-footer__bottom p {
  margin: 0;
}

/* ==========================================================
   FOCUS
   ========================================================== */

#ml-footer a:focus-visible,
#ml-footer button:focus-visible {
  outline: 2px solid var(--ml-footer-blue-deep);
  outline-offset: 4px;
}

/* ==========================================================
   RESPONSYWNOŚĆ
   ========================================================== */

@media (max-width: 1100px) {

  #ml-footer .ml-footer__main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  #ml-footer .ml-footer__main > :last-child {
    grid-column: 2 / 4;
  }

  #ml-footer .ml-footer__hours {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #ml-footer .ml-footer__company-data {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #ml-footer .ml-footer__company-data p {
    display: flex;
    flex-direction: column;
  }

  #ml-footer .ml-footer__company-data strong {
    text-align: left;
  }
}

@media (max-width: 760px) {

  #ml-footer .ml-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }

  #ml-footer .ml-footer__brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  #ml-footer .ml-footer__main > :last-child {
    grid-column: 1 / -1;
  }

  #ml-footer .ml-footer__bank {
    flex-direction: column;
    align-items: flex-start;
  }

  #ml-footer .ml-footer__account {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {

  #ml-footer .ml-footer__inner {
    padding-top: 3.5rem;
  }

  #ml-footer .ml-footer__main {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  #ml-footer .ml-footer__brand,
  #ml-footer .ml-footer__main > :last-child {
    grid-column: auto;
  }

  #ml-footer .ml-footer__description {
    max-width: 100%;
  }

  #ml-footer .ml-footer__cta {
    justify-content: center;
    width: 100%;
  }

  #ml-footer .ml-footer__hours {
    grid-template-columns: 1fr;
  }

  #ml-footer .ml-footer__company-data {
    grid-template-columns: 1fr;
  }

  #ml-footer .ml-footer__company-data p {
    flex-direction: row;
  }

  #ml-footer .ml-footer__company-data strong {
    text-align: right;
  }

  #ml-footer .ml-footer__bank {
    padding: 1.25rem;
  }

  #ml-footer .ml-footer__account {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  #ml-footer .ml-footer__account > span:first-child {
    width: calc(100% - 30px);
    overflow-wrap: anywhere;
  }

  #ml-footer .ml-footer__copy-label {
    width: 100%;
    padding-left: 1.8rem;
  }

  #ml-footer .ml-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* ==========================================================
   REDUKCJA RUCHU
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  #ml-footer *,
  #ml-footer *::before,
  #ml-footer *::after {
    transition: none !important;
  }
}/* End custom CSS */