:root {
  --font-family--base: Kanit, sans-serif;
  --color--text: var(--color--black);
  --text--medium: 1.125rem;
  --line--base: 1.5;
  --weight--regular: 400;
  --font-family--heading: var(--font-family--base);
  --text--heading-h1: min(2.1875vw, 42px);
  --line--heading: 1.2;
  --weight--heading: var(--weight--bold);
  --text--heading-h2: min(2.08vw, 40px);
  --text--heading-h3: min(1.66vw, 32px);
  --weight--bold: 700;
  --text--heading-h4: min(1.25vw, 24px);
  --text--heading-h5: min(1.14vw, 22px);
  --text--heading-h6\<deleted\|variable-85f9e64d-da17-8aef-0884-e2430323b017\>: 1.25rem;
  --color--secondary: #b90b0b;
  --color--primary: #ffe500;
  --text--small: .875rem;
  --line--tight: 1.1;
  --text--large: min(1.04vw, 20px);
  --color--text-inverse: var(--color--primary);
  --weight--semibold: 600;
  --weight--medium: 500;
  --text--regular: min(.833vw, 16px);
  --color--black: #000;
  --color--white: white;
  --color--error: #ff9090;
  --color--text-muted: #b8b8b8;
  --color--success: #b4ffab;
  --text--heading-huge: 0px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  font-family: var(--font-family--base);
  color: var(--color--text);
  font-size: var(--text--medium);
  line-height: var(--line--base);
  font-weight: var(--weight--regular);
}

h1 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h1);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h2);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h3);
  line-height: var(--line--heading);
  font-weight: var(--weight--bold);
  margin-top: 0;
  margin-bottom: 0;
}

h4 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h4);
  line-height: var(--line--heading);
  font-weight: var(--weight--bold);
  margin-top: 0;
  margin-bottom: 0;
}

h5 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h5);
  line-height: var(--line--heading);
  font-weight: var(--weight--bold);
  margin-top: 0;
  margin-bottom: 0;
}

h6 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h6\<deleted\|variable-85f9e64d-da17-8aef-0884-e2430323b017\>);
  line-height: var(--line--heading);
  font-weight: var(--weight--bold);
  margin-top: 0;
  margin-bottom: 0;
}

a {
  color: var(--color--secondary);
  text-decoration: none;
}

a:hover {
  color: var(--color--primary);
  text-decoration: underline;
}

label {
  font-size: var(--text--small);
  font-weight: var(--weight--regular);
  margin-bottom: 10px;
  display: block;
}

.text-center {
  text-align: center;
}

.space-80 {
  width: 100%;
  min-height: 5rem;
}

.page-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.sg-border {
  border: 1px solid #000;
}

.sg {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #f1f1f1;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 95%;
  max-width: 1400px;
  margin: 60px auto;
  padding: 20px;
  display: grid;
}

.space-50 {
  width: 100%;
  min-height: 2.6vw;
}

.heading-h1 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h1);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
  margin-top: 0;
  margin-bottom: 0;
}

.text-size-small-14 {
  font-size: .875rem;
}

.text-size-large-20 {
  flex: none;
}

.text-right {
  text-align: right;
}

.button-secondary {
  color: #fff;
  background-color: #0037ff;
  border: 1px solid #0037ff;
  border-radius: 50px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button-secondary:hover {
  color: #00f7ff;
  background-color: #19109e;
  border-color: #050229;
}

.heading-h6 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h6\<deleted\|variable-85f9e64d-da17-8aef-0884-e2430323b017\>);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
  margin-top: 0;
  margin-bottom: 0;
}

.space-40 {
  width: 100%;
  min-height: 2.5rem;
}

.space-150 {
  width: 100%;
  min-height: 10rem;
}

.text-size-medium-18 {
  font-size: 1.125rem;
}

.space-100 {
  width: 100%;
  min-height: 6.25rem;
}

.button-row-center {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.secondary-button {
  color: #fff;
  background-color: #003cff;
  border: 1px solid #060f9e;
  border-radius: 6px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.secondary-button:hover {
  color: #00f7ff;
  background-color: #19109e;
  border-color: #050229;
}

.heading-h5 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h5);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
  margin-top: 0;
  margin-bottom: 0;
}

.space-4 {
  width: 100%;
  min-height: .25rem;
}

.heading-h3 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h3);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
  flex: none;
}

.heading-h2 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h2);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
}

.space-16 {
  width: 100%;
  min-height: 1rem;
}

.button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.heading-h4 {
  font-family: var(--font-family--heading);
  font-size: var(--text--heading-h4);
  line-height: var(--line--heading);
  font-weight: var(--weight--heading);
}

.dp-button-row-right {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.space-20 {
  width: 100%;
  min-height: 1.25rem;
}

.text-left {
  text-align: left;
}

.space-8 {
  width: 100%;
  min-height: .5rem;
}

.button-ghost {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--color--secondary);
  color: var(--color--secondary);
  font-size: var(--text--small);
  font-weight: var(--weight--bold);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  text-decoration: none;
  display: flex;
}

.button-primary-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--color--primary);
  font-family: var(--font-family--base);
  color: var(--color--secondary);
  font-size: var(--text--small);
  font-weight: var(--weight--bold);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  text-decoration: none;
  display: flex;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--color--secondary);
  font-size: var(--text--small);
  line-height: var(--line--tight);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1a1b1fbf;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.wrap-inner {
  width: 95%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.grid {
  grid-template-rows: auto;
}

.text-span {
  color: var(--color--primary);
}

.text-block {
  font-size: var(--text--large);
}

.image-wrapper-full {
  width: 100%;
}

.text-span-2 {
  color: var(--color--primary);
}

.div-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.mw-500 {
  width: 100%;
  max-width: 500px;
}

.layout-1 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.text-span-3 {
  color: var(--color--primary);
}

.section-1-grid-inner {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

.div-block-3 {
  border-top: 1px solid var(--color--secondary);
}

.text-block-2 {
  font-size: var(--text--medium);
}

.space-30 {
  width: 100%;
  min-height: 1.56vw;
}

.section-2 {
  background-image: url('../images/bg-section-hp-desktop_1bg-section-hp-desktop.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.layout-2 {
  grid-template-rows: auto;
}

.text-span-4 {
  color: var(--color--primary);
}

.text-revers {
  color: var(--color--text-inverse);
}

.layout-3 {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.layout-3-col {
  flex: 1;
}

.layout-3-col-center {
  background-color: var(--color--primary);
  width: 1px;
}

.text-medium {
  font-size: var(--text--medium);
}

.text-medium.color-inrevers, .color-inrevers {
  color: var(--color--text-inverse);
}

.color-primary {
  color: var(--color--primary);
}

.color-secondary {
  color: var(--color--secondary);
}

.bold {
  font-weight: var(--weight--bold);
}

.semibold {
  font-weight: var(--weight--semibold);
}

.regular {
  font-weight: var(--weight--regular);
}

.medium {
  font-weight: var(--weight--medium);
}

.text-large {
  font-size: var(--text--large);
}

.text-mediim {
  font-size: var(--text--medium);
  text-transform: uppercase;
}

.text-small {
  font-size: var(--text--small);
}

.font-family-base {
  font-family: var(--font-family--base);
}

.font-family-heading {
  font-family: var(--font-family--heading);
}

.layout-4 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.offer-item {
  border: 1px solid var(--color--primary);
  color: var(--color--text-inverse);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  display: flex;
}

.offer-item:hover {
  background-color: #16c4d41a;
}

.offer-item-arrow {
  text-align: right;
  flex: 0 auto;
  width: 100%;
}

.button-primary {
  background-color: var(--color--primary);
  color: var(--color--secondary);
  text-decoration: none;
}

.button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  font-family: var(--font-family--base);
  font-size: var(--text--small);
  font-weight: var(--weight--bold);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  display: flex;
}

.grid-2 {
  grid-template-rows: auto;
}

.text-span-5 {
  color: var(--color--secondary);
}

.div-block-4 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-span-6 {
  color: var(--color--primary);
}

.bg-color-primary {
  background-color: var(--color--primary);
  position: relative;
}

.bg-color-secondary {
  background-color: var(--color--secondary);
}

.input {
  border: 1px solid var(--color--primary);
  background-color: #0000;
}

.input:hover, .input:active, .input:focus, .input:focus-visible, .input[data-wf-focus-visible], .input:lang(en) {
  color: var(--color--text-inverse);
}

.grid-3 {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
}

.checkbox {
  border: 1px solid var(--color--primary);
  width: 16px;
  height: 16px;
}

.checkbox.w--redirected-checked {
  background-color: var(--color--primary);
}

.checkbox-label {
  padding-left: 5px;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.75fr;
}

.grid-5 {
  grid-template-rows: auto;
}

.footer-nav {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-6 {
  font-size: var(--text--small);
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.footer-author {
  border-top: 1px solid var(--color--secondary);
  font-size: var(--text--regular);
}

.text-block-5 {
  font-size: var(--text--small);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text-span-7 {
  color: var(--color--primary);
}

.div-block-5 {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  border: 1px solid var(--color--primary);
  justify-content: flex-start;
  align-items: center;
  padding: 1.25rem 2rem;
  display: flex;
}

.grid-7 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
}

.button-primary-ok {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--color--primary);
  box-shadow: 8px 8px 0 0 var(--color--black);
  color: var(--color--secondary);
  font-size: var(--text--small);
  font-weight: var(--weight--bold);
  border: 4px solid #000;
  justify-content: center;
  align-items: center;
  padding: .88vw 2vw;
  text-decoration: none;
  display: flex;
}

.button-primary-ok:hover {
  background-color: var(--color--white);
  color: var(--color--secondary);
  text-decoration: none;
}

.button-secondary-ok {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--color--secondary);
  color: var(--color--white);
  font-size: var(--text--small);
  font-weight: var(--weight--bold);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  text-decoration: none;
  display: flex;
}

.button-secondary-ok:hover {
  background-color: var(--color--white);
  color: var(--color--secondary);
}

.carousel {
  background-color: #fff;
  flex-direction: row;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.logo-carousel-wrap {
  backface-visibility: hidden;
  flex: none;
  width: auto;
  display: flex;
  transform: perspective(1px);
}

.logo-carousel {
  grid-column-gap: 3rem;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  overflow: hidden;
}

.logo-carousel-item {
  flex: none;
  padding: 1rem;
}

.logo-carousel-clone {
  grid-column-gap: 1rem;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  overflow: hidden;
}

.none {
  display: none;
}

.grid-2-copy {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
}

.div-block-6 {
  background-color: var(--color--secondary);
  width: 600px;
  height: 500px;
  position: absolute;
  inset: 15% auto auto -20%;
}

.div-block-7, .image {
  position: relative;
}

.submit-button {
  background-color: var(--color--primary);
  color: var(--color--secondary);
  font-size: var(--text--small);
  font-weight: var(--weight--bold);
  border-radius: 60px;
  padding: 16px 40px;
}

.submit-button:hover {
  background-color: var(--color--white);
}

.link, .link-inrevers {
  color: var(--color--white);
}

.max-width-760 {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.sg-div-bg {
  background-color: #0000001a;
  padding: 1rem;
}

.only-mobile {
  display: none;
}

.image-2 {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.div-block-9 {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/image-paralax-desktop.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-clip: border-box;
  width: 100%;
  height: 900px;
}

.mask1 {
  aspect-ratio: 192 / 89;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.image-3 {
  width: 100%;
  height: 100%;
  min-height: 900px;
  margin-top: -309px;
  position: absolute;
}

.div-block-10 {
  overflow: visible;
}

.image-4 {
  width: 100%;
}

.success-message {
  background-color: var(--color--primary);
}

.error-message {
  background-color: var(--color--error);
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-2 {
  color: var(--color--white);
  font-size: var(--text--regular);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: var(--color--primary);
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary-2 {
  color: #fff;
  font-size: var(--text--regular);
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.navbar-logo-left {
  background-color: var(--color--black);
  font-size: var(--text--regular);
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1600px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.body {
  background-color: var(--color--black);
}

.image-5 {
  width: 33vw;
  max-width: 633px;
  position: absolute;
  inset: 3% 50% auto 32%;
}

.div-block-11 {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.hero {
  color: var(--color--primary);
  aspect-ratio: 16 / 8;
  background-image: url('../images/Rectangle-344.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.image-6 {
  width: 68vw;
  max-width: 1300px;
}

.image-7 {
  width: 7.95vw;
  max-width: 153px;
  position: absolute;
  inset: 30% auto auto 76%;
}

.div-block-12 {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.image-8 {
  width: 67.7vw;
  max-width: 1300px;
  position: absolute;
  inset: 15% auto auto 14%;
}

.div-block-13 {
  width: 100%;
  position: absolute;
  inset: 67% auto auto 0%;
}

.div-block-14 {
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: flex-start;
  width: 57vw;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.paragraph {
  font-size: var(--text--heading-h4);
  font-weight: var(--weight--medium);
}

.paragraph-2 {
  font-size: var(--text--heading-h4);
  text-transform: uppercase;
}

.div-block-15 {
  width: 100%;
  position: absolute;
  inset: 82% auto auto 0%;
}

.heading {
  font-size: var(--text--heading-h1);
}

.image-9 {
  z-index: 1;
  width: 25.5vw;
  max-width: 490px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-10 {
  width: 18.8vw;
  max-width: 361px;
  position: absolute;
  inset: 43% auto auto 78%;
}

.grid-9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 88vw;
  margin-left: auto;
  margin-right: auto;
}

.div-block-16 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-6 {
  color: var(--color--white);
  font-size: var(--text--heading-h5);
}

.heading-2 {
  font-size: min(2.08vw, 40px);
}

.heading-2.color-secondary {
  font-size: 40px;
}

.div-block-17 {
  background-color: var(--color--black);
  color: var(--color--primary);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}

.image-11 {
  width: 14.4vw;
  max-width: 277px;
  position: absolute;
  inset: auto 2% 0% auto;
}

.section-video {
  background-image: linear-gradient(290deg, #d19a33 21%, #eee6b0 45%, #d9a13b 94%);
}

.grid-10 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.div-block-19 {
  width: 59.2vw;
  max-width: 1138px;
}

.div-block-20 {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: var(--color--white);
  box-shadow: 8px 8px 0 0 var(--color--black);
  font-size: var(--text--heading-h1);
  line-height: var(--line--heading);
  font-weight: var(--weight--bold);
  text-transform: uppercase;
  border: 4px solid #000;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 35.26vw;
  max-width: 677px;
  padding: 1.5vw;
  display: flex;
}

.text-block-7, .text-block-8 {
  font-size: var(--text--heading-h1);
}

.text-span-8 {
  color: var(--color--secondary);
}

.text-block-9 {
  font-size: var(--text--heading-h5);
  font-weight: var(--weight--regular);
}

.grid-11 {
  grid-column-gap: 1.5vw;
  grid-row-gap: 1.5vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 88.9vw;
  max-width: 1688px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-21 {
  grid-column-gap: .5vw;
  grid-row-gap: .5vw;
  background-color: var(--color--white);
  box-shadow: 8px 8px 0 0 var(--color--black);
  text-transform: uppercase;
  border: 4px solid #000;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: .5vw;
  display: flex;
}

.text-block-10 {
  color: var(--color--secondary);
  font-size: var(--text--large);
  font-weight: var(--weight--medium);
  text-align: center;
}

.div-block-22 {
  grid-column-gap: .5vw;
  grid-row-gap: .5vw;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-block-11 {
  font-size: var(--text--heading-h5);
  line-height: var(--line--heading);
  font-weight: var(--weight--bold);
  text-align: center;
}

.text-block-12 {
  font-size: var(--text--regular);
  font-weight: var(--weight--medium);
  text-align: center;
}

.image-13 {
  width: 12.13vw;
  max-width: 233px;
}

.div-block-23 {
  font-size: var(--text--heading-h4);
  line-height: var(--line--heading);
  font-weight: var(--weight--medium);
  text-align: center;
  text-transform: uppercase;
  width: 45vw;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.relative {
  position: relative;
}

.image-14 {
  width: 14.11vw;
  max-width: 271px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.text-block-13 {
  color: var(--color--black);
  font-size: var(--text--heading-h3);
}

.section-3 {
  background-image: url('../images/Rectangle-344.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading-h5-2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}

.swiper-arrow-prev {
  color: var(--color--white);
  width: 2.083vw;
  max-width: 40px;
  height: 2.083vw;
  position: absolute;
  inset: 50% auto 0% 0%;
}

.swiper-arrow-prev:hover {
  color: var(--color--primary);
}

.prezent-przesylka {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #d11800;
  text-transform: uppercase;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  font-weight: 700;
  display: block;
}

.heading-h4-2 {
  flex: none;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.swiper {
  width: calc(98% - 100px);
  margin-left: auto;
  margin-right: auto;
}

.swiper.swiper-prezenty {
  width: 82.81vw;
  max-width: 1590px;
}

.div-block-24 {
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.space-large-20 {
  width: 100%;
  min-height: 20px;
}

.container-regular-2 {
  width: 91.14vw;
  max-width: 1750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.text-size-large {
  font-size: 1.25rem;
}

.div-block-25 {
  text-transform: uppercase;
}

.prezent-belka {
  color: #fff;
  background-color: #2aaadd;
  flex: 0 auto;
  width: 100%;
  padding: 20px;
}

.swiper-slide {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto !important;
}

.flex-vertical-center {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-vertical-center.padding-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.image-prezent {
  width: auto;
}

.vertical-center-space-between {
  color: #000;
  text-align: center;
  background-color: #fff;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.swiper-arrow-next {
  color: var(--color--white);
  width: 2.083vw;
  max-width: 40px;
  height: 2.083vw;
  position: absolute;
  inset: 50% 0 0% auto;
}

.swiper-arrow-next:hover {
  color: var(--color--primary);
}

.div-block-26 {
  background-color: var(--color--white);
  text-transform: uppercase;
  height: 100%;
  margin-top: -7vw;
  padding: 6.5vw 2.6vw 1.5vw;
}

.image-15 {
  width: 25.88vw;
  max-width: 497px;
}

.div-block-27 {
  width: 26.3vw;
  max-width: 505px;
  height: 100%;
}

.text-block-14 {
  font-size: var(--text--heading-h2);
  line-height: var(--line--heading);
  font-weight: var(--weight--bold);
}

.paragraph-3 {
  font-size: var(--text--large);
}

.code-embed {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.swiper-arrow-prev-2 {
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 50% auto 0% 0%;
}

.heading-h4-3 {
  flex: none;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.div-block-28 {
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.container-regular-3 {
  width: 91.14vw;
  max-width: 1750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.div-block-29 {
  text-transform: uppercase;
}

.swiper-arrow-next-2 {
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 50% 0 0% auto;
}

.div-block-17-copy {
  color: var(--color--primary);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}

.video {
  width: 900px;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  position: static;
}

.div-block-30 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: static;
}

.div-block-31 {
  justify-content: flex-end;
  align-items: center;
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.div-block-32 {
  background-color: var(--color--white);
  justify-content: center;
  align-items: center;
  width: 80%;
  padding: 22px 30px 22px 439px;
  display: block;
  position: relative;
}

.image-16 {
  position: absolute;
  inset: -103% auto auto 0%;
}

.div-block-33 {
  width: 100%;
}

.div-block-33.poz-2 {
  margin-top: -4vw;
}

.div-block-33.poz-3 {
  margin-top: -5vw;
}

.div-block-34 {
  justify-content: flex-start;
  align-items: center;
  width: 72.92vw;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.div-block-35 {
  background-color: var(--color--white);
  font-size: var(--text--heading-h4);
  justify-content: flex-end;
  align-items: center;
  width: 50vw;
  max-width: 1000px;
  padding: .5vw .5vw .5vw 11vw;
  display: flex;
  position: absolute;
  right: 0;
}

.div-block-35.trzecia {
  padding-left: 14vw;
}

.image-17 {
  width: 33.49vw;
  max-width: 643px;
  position: relative;
}

.paragraph-4 {
  margin-bottom: 0;
}

.list {
  margin-bottom: 0;
  padding-left: 40px;
}

.div-block-34-copy {
  justify-content: flex-end;
  align-items: center;
  width: 72.92vw;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.div-block-35-copy {
  background-color: var(--color--white);
  font-size: var(--text--heading-h4);
  justify-content: flex-end;
  align-items: center;
  width: 50vw;
  max-width: 1000px;
  margin-left: 2vw;
  padding: .5vw 18vw .5vw .5vw;
  display: flex;
  position: absolute;
  left: 0;
  right: auto;
}

.image-17-copy {
  width: 36.4vw;
  max-width: 699px;
  position: relative;
}

.image-18 {
  width: 18.38vw;
  max-width: 353px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.image-19 {
  width: 14.79vw;
  max-width: 284px;
  position: absolute;
  inset: 20.9vw auto 0% 0%;
}

.image-20 {
  width: 100%;
}

.image-21 {
  z-index: 100;
  width: 28.28vw;
  max-width: 543px;
  position: absolute;
  inset: auto 0% -23% auto;
}

.section-4 {
  background-color: #f8f8f8;
  position: relative;
}

.div-block-17-copy-2 {
  color: var(--color--black);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}

.div-block-36 {
  box-shadow: 8px 8px 0 0 var(--color--black);
  border: 4px solid #000;
  width: 38.8vw;
  max-width: 745px;
  margin-left: auto;
  margin-right: auto;
  padding: 1vw;
  display: flex;
}

.list-2 {
  font-size: var(--text--heading-h5);
  margin-bottom: 0;
  padding-left: 2vw;
}

.image-22 {
  width: 21vw;
  max-width: 404px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-23 {
  width: 22.44vw;
  max-width: 431px;
  position: absolute;
  inset: auto 0% -34% auto;
}

.div-block-50 {
  color: #000;
  text-align: left;
  text-transform: uppercase;
  background-color: #fc0;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
}

.font-size-30 {
  font-size: var(--text--heading-h3);
  padding-left: 0;
  padding-right: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2em;
}

.text-span-28 {
  color: #fc0;
}

.font-size-20 {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.2;
}

.font-size-20.center {
  text-align: center;
  font-size: 16px;
}

.div-block-51 {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-top: 16px;
  display: flex;
}

.div-block-85 {
  color: #e7f4f6;
  text-transform: uppercase;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 30px;
  font-weight: 700;
  display: flex;
}

.div-block-86 {
  text-transform: uppercase;
  padding: 2px;
}

.font-sieze-38 {
  color: var(--color--text);
  font-size: var(--text--heading-h2);
  text-align: center;
  font-weight: 600;
  line-height: 1.2em;
}

.link-block-2 {
  border-radius: 12px;
  padding: 2px;
  text-decoration: none;
  display: flex;
}

.img-krok-5 {
  width: 6vw;
}

.img-krk-6 {
  width: 11vw;
}

.div-block-88 {
  text-align: center;
  text-transform: uppercase;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 20px;
  font-style: italic;
  font-weight: 700;
}

.paragraph-15 {
  font-size: 16px;
  line-height: var(--line--heading);
  text-align: center;
}

.grid-12 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 95%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.prenumerata-krok {
  background-color: #e7f4f6;
  border: 2px #955a8e;
  height: 100%;
  padding: 16px;
}

.div-block-87 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.section-5 {
  background-color: var(--color--primary);
  max-width: 126%;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 60px;
}

.font-size-24-2 {
  text-align: left;
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 700;
  line-height: 1.2em;
  display: flex;
}

.image-24 {
  width: 5vw;
}

.text-block-15 {
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 700;
}

.div-block-89 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #dddaed;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.faq-minus {
  width: auto;
  display: none;
}

.uui-space-medium {
  width: 100%;
  min-height: 2rem;
}

.accordion-icon_component {
  color: #000;
  border: 2px solid #98a2b3;
  border-radius: 50%;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.footer {
  background-color: #f2f2f2;
}

.section-6 {
  background-color: #f8f8f8;
}

.div-block-91 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.faq-list {
  color: #dcdaed;
  width: 95%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  display: none;
}

.uui-faq01_answer {
  overflow: hidden;
}

.div-block-90 {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: 700;
}

.nav-btn-zamow {
  color: #000;
  text-transform: uppercase;
  background-color: #fc0;
  border: 1px #fcf3d7;
  border-radius: 6px;
  margin-left: 26px;
  padding: 10px 15px;
  font-size: 20px;
}

.font-sieze-36 {
  font-size: var(--text--heading-h3);
  text-transform: uppercase;
  font-weight: 700;
}

.div-block-92 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 95%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  display: flex;
}

.uui-faq01_list {
  width: 95%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px #492f5d;
  border-bottom: 1px solid #ffffff4f;
  margin-bottom: 10px;
  padding-bottom: 7px;
  display: block;
}

.uui-faq01_heading {
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.accordion-icon_vertical-line {
  background-color: #98a2b3;
  border-radius: 1px;
  width: 2px;
  height: .75rem;
  position: absolute;
}

.text-block-18 {
  text-align: center;
  width: 95%;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  font-size: 20px;
}

.faq-header {
  color: #dcdaed;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  display: flex;
}

.faq-content {
  opacity: 1;
  height: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 10px;
  line-height: 1.3em;
  display: none;
}

.uui-text-size-medium-2 {
  letter-spacing: normal;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.uui-faq01_icon-wrapper {
  color: #7f56d9;
}

.text-span-12 {
  color: #000;
}

.text-span-11 {
  color: #fe9000;
}

.accordion-icon_horizontal-line {
  background-color: #98a2b3;
  border-radius: 1px;
  width: .75rem;
  height: 2px;
  position: absolute;
}

.logo-hachette {
  width: 100%;
  max-width: 180px;
}

.link-4, .bold-text {
  color: #000;
}

.faq-plus {
  width: auto;
}

.prenumerata-under-kroki {
  text-align: center;
  text-transform: uppercase;
  border-radius: 12px;
  width: 65vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 1.1em;
}

.uui-faq01_accordion {
  border-bottom: 1px solid #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.uui-faq01_accordion.last-item {
  border-bottom-color: #0000;
}

.heading-3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.footer-link {
  color: var(--color--black);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color--black);
  text-decoration: underline;
}

.div-block-93 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.uui-faq01_question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.text-block-19 {
  z-index: 800;
  color: #7e7e7ebf;
  font-size: var(--text--regular);
  position: fixed;
  inset: auto auto 9% 1%;
}

.terms {
  z-index: 999;
  background-color: #0009;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-block-18 {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 20px;
  width: 95%;
  max-width: 600px;
  height: 90vh;
  margin-top: 5vh;
  margin-left: auto;
  margin-right: auto;
}

.div-block-94 {
  border-bottom: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-block-16 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.text-block-17 {
  text-align: center;
}

.div-block-95 {
  height: calc(100% - 150px);
  padding: 10px;
  overflow: auto;
}

.div-block-96 {
  border-top: 1px solid #000;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.button-2 {
  color: #fff;
  background-color: #000;
  margin-top: 7px;
}

.belka-cta {
  z-index: 9999;
  background-color: var(--color--secondary);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 68px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.button-3 {
  background-color: var(--color--primary);
  box-shadow: 4px 4px 0 0 var(--color--black);
  color: var(--color--black);
  font-size: var(--text--medium);
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border: 2px solid #000;
  border-radius: 0;
  padding: 12px 18px;
  font-weight: 600;
}

.button-3:hover {
  background-color: var(--color--white);
  color: var(--color--black);
  text-decoration: none;
}

.div-block-97 {
  aspect-ratio: 16 / 9;
  width: 90%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-16 {
  color: var(--color--white);
  font-size: var(--text--large);
  font-weight: var(--weight--regular);
}

.div-block-23-copy {
  font-size: var(--text--heading-h4);
  line-height: var(--line--heading);
  font-weight: var(--weight--medium);
  text-align: center;
  text-transform: uppercase;
  width: 62vw;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1280px) {
  .prenumerata-under-kroki {
    flex-flow: column;
    display: flex;
  }
}

@media screen and (min-width: 1440px) {
  .img-krok-5, .img-krk-6, .image-24 {
    width: auto;
  }
}

@media screen and (min-width: 1920px) {
  .prenumerata-under-kroki {
    max-width: 900px;
    font-size: 32px;
  }
}

@media screen and (max-width: 991px) {
  body {
    --font-family--base: Kanit, sans-serif;
    --color--text: var(--color--black);
    --text--medium: 1.125rem;
    --line--base: 1.5;
    --weight--regular: 400;
    --font-family--heading: var(--font-family--base);
    --text--heading-h1: min(2.1875vw, 42px);
    --line--heading: 1.2;
    --weight--heading: var(--weight--bold);
    --text--heading-h2: min(2.08vw, 40px);
    --text--heading-h3: min(1.66vw, 32px);
    --weight--bold: 700;
    --text--heading-h4: min(1.25vw, 24px);
    --text--heading-h5: min(1.14vw, 22px);
    --text--heading-h6\<deleted\|variable-85f9e64d-da17-8aef-0884-e2430323b017\>: 1.25rem;
    --color--secondary: #b90b0b;
    --color--primary: #ffe500;
    --text--small: .875rem;
    --line--tight: 1.1;
    --text--large: min(1.04vw, 20px);
    --color--text-inverse: var(--color--primary);
    --weight--semibold: 600;
    --weight--medium: 500;
    --text--regular: min(.833vw, 16px);
    --color--black: #000;
    --color--white: white;
    --color--error: #ff9090;
    --color--text-muted: #b8b8b8;
    --color--success: #b4ffab;
    --text--heading-huge: 0px;
  }

  .space-80 {
    min-height: 3.5rem;
  }

  .space-50 {
    min-height: 2.6vw;
  }

  .space-40 {
    min-height: 1.75rem;
  }

  .space-150 {
    min-height: 7.5rem;
  }

  .space-100 {
    min-height: 4.5rem;
  }

  .space-16 {
    min-height: .75rem;
  }

  .space-20 {
    min-height: 1rem;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .layout-3 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .div-block-6 {
    width: 450px;
    height: 400px;
    top: 2%;
  }

  .grid-8 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .no-tablet {
    display: none;
  }

  .container {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .nav-menu-wrapper-2 {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }
}

@media screen and (max-width: 767px) {
  body {
    --font-family--base: Kanit, sans-serif;
    --color--text: var(--color--black);
    --text--medium: 1rem;
    --line--base: 1.5;
    --weight--regular: 400;
    --font-family--heading: var(--font-family--base);
    --text--heading-h1: 2rem;
    --line--heading: 1.2;
    --weight--heading: var(--weight--bold);
    --text--heading-h2: 1.75rem;
    --text--heading-h3: 1.5rem;
    --weight--bold: 700;
    --text--heading-h4: 1.25rem;
    --text--heading-h5: 1.125rem;
    --text--heading-h6\<deleted\|variable-85f9e64d-da17-8aef-0884-e2430323b017\>: 1.125rem;
    --color--secondary: #b90b0b;
    --color--primary: #ffe500;
    --text--small: .875rem;
    --line--tight: 1.1;
    --text--large: 1.125rem;
    --color--text-inverse: var(--color--primary);
    --weight--semibold: 600;
    --weight--medium: 500;
    --text--regular: 1rem;
    --color--black: #000;
    --color--white: white;
    --color--error: #ff9090;
    --color--text-muted: #b8b8b8;
    --color--success: #b4ffab;
    --text--heading-huge: 0px;
  }

  .space-80 {
    min-height: 2.5rem;
  }

  .space-50 {
    min-height: 1.75rem;
  }

  .button-secondary {
    flex: 0 auto;
    width: 100%;
  }

  .space-40 {
    min-height: 1.25rem;
  }

  .space-150 {
    min-height: 5rem;
  }

  .space-100 {
    min-height: 3rem;
  }

  .button-row-center {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .secondary-button {
    flex: 0 auto;
    width: 100%;
  }

  .space-16 {
    min-height: .5rem;
  }

  .button-row {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .button-row.button-row-left {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .space-20 {
    min-height: .75rem;
  }

  .space-8 {
    min-height: .25rem;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column-reverse;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .div-block {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .layout-1 {
    grid-template-columns: 1fr;
  }

  .section-1-grid-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .space-30 {
    min-height: 1rem;
  }

  .section-2 {
    background-image: url('../images/bg-section-hp-mobile_1bg-section-hp-mobile.webp');
  }

  .layout-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .layout-3 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .layout-3-col-center {
    width: 100%;
    height: 1px;
  }

  .layout-4 {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-column-gap: 16px;
    grid-template-columns: 1fr;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .grid-6 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1.5fr;
  }

  .grid-7 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .grid-2-copy {
    grid-template-columns: 1fr;
  }

  .div-block-8 {
    flex: 1;
  }

  .no-mobile {
    display: none;
  }

  .only-mobile {
    display: block;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-11 {
    margin-top: 10px;
  }

  .menu-button-2.w--open {
    background-color: var(--color--black);
    color: var(--color--white);
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand-2 {
    padding-left: 0;
  }

  .nav-menu-two {
    background-color: var(--color--black);
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .image-5 {
    width: 56vw;
    left: 21%;
  }

  .hero {
    padding-bottom: 112px;
  }

  .image-7 {
    width: 16vw;
    top: 17%;
    left: 11%;
  }

  .image-8 {
    width: 90vw;
    top: 8%;
    left: 4%;
  }

  .div-block-13 {
    padding-top: 54%;
    position: static;
    top: 33%;
  }

  .div-block-14 {
    width: 95vw;
  }

  .div-block-15 {
    position: static;
    top: 48%;
  }

  .image-10 {
    width: 34vw;
    top: 18%;
    left: 66%;
  }

  .grid-10 {
    grid-template-columns: 1fr;
  }

  .div-block-19 {
    width: 95vw;
  }

  .div-block-20 {
    width: 84vw;
  }

  .text-block-8 {
    font-size: var(--text--heading-h3);
  }

  .grid-11 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .div-block-23 {
    width: 95vw;
  }

  .heading-h5-2 {
    font-size: 1.5rem;
  }

  .swiper-arrow-prev {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 2.083vw;
    max-width: 30px;
    display: grid;
  }

  .heading-h4-2 {
    font-size: 1.75rem;
  }

  .swiper.swiper-prezenty {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 79vw;
    display: grid;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .swiper-arrow-next {
    max-width: 30px;
    right: 28px;
  }

  .div-block-26 {
    margin-top: -18vw;
    padding-top: 17vw;
  }

  .image-15, .div-block-27 {
    width: 100%;
  }

  .heading-h4-3 {
    font-size: 1.75rem;
  }

  .container-regular-3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 98vw;
    display: grid;
  }

  .div-block-33.poz-1 {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-33.poz-2, .div-block-33.poz-3 {
    margin-top: 6vw;
  }

  .div-block-34 {
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: static;
  }

  .div-block-35 {
    width: 90%;
    padding-top: 16vw;
    padding-left: .5vw;
    position: static;
  }

  .div-block-35.trzecia {
    width: 90%;
    padding-left: .5vw;
  }

  .image-17 {
    width: 80%;
    margin-bottom: -14vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .div-block-34-copy {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: center;
    width: 95vw;
  }

  .div-block-35-copy {
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-left: 0;
    padding-top: 16vw;
    padding-right: 0;
    position: static;
  }

  .image-17-copy {
    width: 80%;
    margin-bottom: -14vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .image-19 {
    top: -3.4vw;
  }

  .image-21 {
    display: none;
  }

  .div-block-36 {
    width: 90vw;
  }

  .list-2 {
    padding-left: 6vw;
  }

  .grid-12 {
    grid-template-columns: 1fr 1fr;
  }

  .uui-space-medium {
    min-height: 1.5rem;
  }

  .div-block-92 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .paragraph-14 {
    text-align: center;
  }

  .icon {
    background-color: var(--color--black);
    color: var(--color--white);
  }

  .heading-4 {
    width: 95%;
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-23-copy {
    width: 95vw;
  }
}

@media screen and (max-width: 479px) {
  .button-secondary, .secondary-button {
    flex: 0 auto;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .container {
    max-width: none;
  }

  .nav-menu-three, .nav-menu-two {
    flex-direction: column;
  }

  .hero {
    aspect-ratio: 16 / 26;
  }

  .image-7 {
    top: 21%;
  }

  .div-block-13 {
    padding-top: 65%;
    position: static;
  }

  .div-block-15 {
    position: static;
    top: 81%;
  }

  .grid-10 {
    grid-template-columns: 1fr;
  }

  .div-block-19 {
    width: 96vw;
  }

  .div-block-20 {
    width: 93vw;
  }

  .swiper-arrow-prev {
    max-width: 40px;
  }

  .div-block-85 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .font-sieze-38 {
    text-align: center;
  }

  .img-krok-5, .img-krk-6 {
    width: auto;
  }

  .grid-12 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .font-size-24-2 {
    font-size: clamp(18px, 1.55vw, 24px);
  }

  .image-24 {
    width: auto;
  }

  .div-block-89 {
    justify-content: flex-start;
    align-items: center;
  }

  .faq-list {
    padding: 20px 10px;
  }

  .nav-btn-zamow {
    text-align: center;
    width: 90%;
    margin-bottom: 20px;
  }

  .div-block-92 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .text-block-18 {
    font-size: 16px;
  }

  .faq-header {
    line-height: 1.3em;
  }

  .paragraph-14 {
    text-align: center;
  }

  .logo-hachette {
    width: 100%;
  }

  .prenumerata-under-kroki {
    width: auto;
    max-width: 90%;
    margin-top: 6%;
    font-size: 6vw;
  }

  .heading-3 {
    line-height: 1.2em;
  }

  .text-block-17 {
    font-size: 14px;
  }

  .div-block-95 {
    height: calc(100% - 180px);
  }
}

#w-node-_911814d4-15d9-4949-8311-0d729f39643e-9cf13c04 {
  place-self: center;
}

#w-node-_66dfbfb1-bf00-a5c4-e0b9-e174b7caeef2-9cf13c04 {
  align-self: stretch;
}

#w-node-_0c439e56-8776-926b-d345-2c2667b4a246-9cf13c04 {
  place-self: stretch;
}

#w-node-b50e14e2-5ec2-f107-09b7-54afcfdb45be-9cf13c04, #w-node-_94e18c39-d802-bcb4-2960-7a421dd862e2-9cf13c04, #w-node-ba714d6e-6534-3a56-608f-5e6c3cf41264-9cf13c04 {
  align-self: stretch;
}

#w-node-_9b148695-701d-1b82-e675-190372a69880-9cf13c04, #w-node-_9b148695-701d-1b82-e675-190372a69888-9cf13c04, #w-node-_9b148695-701d-1b82-e675-190372a69890-9cf13c04, #w-node-_9b148695-701d-1b82-e675-190372a69898-9cf13c04, #w-node-_9b148695-701d-1b82-e675-190372a698a0-9cf13c04, #w-node-_9b148695-701d-1b82-e675-190372a698a8-9cf13c04 {
  align-self: auto;
}

#w-node-_75a7beb3-bdf7-9e54-087a-1e18b8728bed-9cf13c05 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5fe7e0be-4a7e-f037-714e-0f31d61514cf-d61514c9, #w-node-_5fe7e0be-4a7e-f037-714e-0f31d61514e0-d61514c9 {
  align-self: end;
}

#w-node-_7a1dc5aa-bd15-31a1-a763-9bda62b6ac9b-62b6ac7e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a2d14b49-7620-175a-8366-73c72376cb82-9cf13c08 {
  place-self: auto;
}

#w-node-a2d14b49-7620-175a-8366-73c72376cb84-9cf13c08 {
  place-self: start;
}


