* {
  --min-screen-size: 430;
  --max-screen-size: 1440;
  --interpolate-diff: calc(var(--max-font-size) - var(--min-font-size));
  --interpolate: clamp(
  	calc(var(--min-font-size) * 1px),
  	calc(
  		(var(--min-font-size) * 1px) +
  		var(--interpolate-diff) *
  		((100vw - calc(var(--min-screen-size) * 1px)) / (var(--max-screen-size) - var(--min-screen-size)))
  	),
  	calc(var(--max-font-size) * 1px)
  );
}

html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

.h-a3 {
  color: var(--text-secondary);
  font-size: 32px;
  font-family: var(--type-font-family-font-title);
  font-style: normal;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: 0px;
}

.h-a4 {
  color: var(--text-secondary);
  --min-font-size: 27;
  --max-font-size: 48;
  font-size: var(--interpolate);
  font-family: var(--type-font-family-font-title);
  font-style: normal;
  font-weight: 700;
  line-height: 1.417;
  letter-spacing: 0px;
}

.h-a2 {
  color: var(--text-secondary);
  --min-font-size: 17;
  --max-font-size: 24;
  font-size: var(--interpolate);
  font-family: var(--type-font-family-font-body);
  font-style: normal;
  font-weight: 400;
  line-height: 1.833;
  letter-spacing: 0px;
}

.body-text-m {
  color: var(--text-on-disabled);
  font-size: 16px;
  font-family: var(--type-font-family-font-body);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0px;
}

.h-a5 {
  color: var(--text-secondary);
  font-size: 24px;
  font-family: var(--type-font-family-font-body);
  font-style: normal;
  font-weight: 400;
  line-height: 1.833;
  letter-spacing: 0px;
}

.body-text-l2 {
  color: var(--text-primary);
  font-size: 20px;
  font-family: var(--type-font-family-font-body);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0px;
}

.h-a1 {
  --min-font-size: 20;
  --max-font-size: 32;
  font-size: var(--interpolate);
  font-family: var(--type-font-family-font-title);
  font-style: normal;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: 0px;
}

.body-text-m-bold {
  color: var(--text-button-color);
  font-size: 16px;
  font-family: var(--type-font-family-font-body);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0px;
}

.body-text-l1 {
  --min-font-size: 16;
  --max-font-size: 20;
  font-size: var(--interpolate);
  font-family: var(--type-font-family-font-body);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0px;
}

.body-text-s {
  color: var(--text-dissabled);
  font-size: 14px;
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  line-height: 1.429;
  letter-spacing: 0px;
}

.sub-text-brown {
  color: #bfa45a;
}

.h {
  color: var(--text-secondary);
  font-size: 24px;
  letter-spacing: 0px;
}

.body-text-l {
  color: var(--text-secondary);
  font-size: 20px;
  letter-spacing: 0px;
}

.section1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px var(--jumper-64-20) 0 var(--jumper-64-20);
}

.section2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--jumper-64-20);
}

.btn3 {
  display: flex;
  background-color: var(--dobrze-400);
  padding: 15px 24px 15px 23px;
  border: 1px solid var(--border-action-hover);
  border-radius: 8px;
}

.input2 {
  background-color: var(--surface-primary);
  padding: 11px 14px;
  border: 2px solid var(--border-tertiary);
  border-radius: 8px;
}

.group2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

.group1 {
  display: flex;
  flex-direction: column;
  padding: var(--jumper-16-8) 16px;
}

.btn1 {
  display: flex;
  background-color: var(--icon-action-hover);
  padding: 10px 25px 10px 24px;
  border-radius: 8px;
}

.input1 {
  border-radius: var(--radius-radius-md);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #083e45;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner:not([hidden]) {
  display: block;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner__title {
  color: #fff;
  font-family: var(--type-font-family-font-title);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.cookie-banner__desc {
  color: #b3cdd1;
  font-family: var(--type-font-family-font-body);
  font-size: 14px;
  line-height: 1.6;
}
.cookie-banner__desc a {
  color: #05df72;
  text-decoration: underline;
}
.cookie-banner__desc a:hover {
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--type-font-family-font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  border: none;
  white-space: nowrap;
}
.cookie-banner__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.cookie-banner__btn--accept {
  background-color: #05df72;
  color: #0a0a0a;
}
.cookie-banner__btn--reject {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.cookie-banner__btn--reject:hover {
  border-color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__btn {
    text-align: center;
  }
}

.hover-bright:hover {
  filter: brightness(1.2);
}

.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.whatsapp-fab__label {
  font-family: var(--type-font-family-font-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}
@media (max-width: 480px) {
  .whatsapp-fab {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 16px;
  }
  .whatsapp-fab__label {
    display: none;
  }
}/*# sourceMappingURL=global.css.map */