@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format("woff2"), url('../fonts/Satoshi-VariableItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.woff2') format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.woff2') format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --color--background-color: #efefef;
  --font-family--satoshi: Satoshi, sans-serif;
  --color--font-color: #151515;
  --text-size--regular: 1rem;
  --heading-style--h2: 5rem;
  --text-size--tiny: .75rem;
  --text-size--medium: 1.125rem;
  --text-size--small: .875rem;
  --text-size--huge: 2rem;
  --heading-style--h1: 7.75rem;
  --heading-style--h5: 3.5rem;
  --heading-style--h6: 2.5rem;
  --text-size--large: 1.5rem;
  --heading-style--h3: 4.875rem;
  --color--black: black;
  --color--white: white;
  --color--primary-color: #eb0028;
  --heading-style--h4: 4rem;
  --secondary-button--gap: 1rem;
  --font-family--satoshi-variable: "Satoshi Variable", sans-serif;
  --color--stroke: #9b8f7e;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.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;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--color--background-color);
  font-family: var(--font-family--satoshi);
  color: var(--color--font-color);
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

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

img {
  object-fit: cover;
  width: 20%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

.heading-2 {
  font-size: var(--heading-style--h2);
  line-height: .95;
}

.container {
  width: 100%;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
}

.container.small {
  max-width: 90rem;
  margin-top: 162px;
}

.container.medium {
  max-width: 100rem;
}

.padding-global {
  z-index: 1;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}

.padding-global.small {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-box {
  max-width: 27rem;
}

.text-box.large {
  max-width: 60rem;
}

.hero-style-guide-content {
  grid-row-gap: 1.5rem;
  color: #f3f3f3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-size-regular {
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

.hero-style-guide-wrapper {
  background-image: linear-gradient(0deg, #12121263, #12121200);
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}

.button-text {
  flex-direction: column;
  display: flex;
  position: relative;
}

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

.section-style-guide {
  margin-top: 5.75rem;
}

.style-guide-header {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 4.5rem;
  display: flex;
}

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

.button {
  grid-row-gap: .25rem;
  color: #3f3f3f;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.button-line {
  background-color: #3f3f3f;
  width: 100%;
  height: 1px;
}

.button-text-absolute {
  position: absolute;
  bottom: -2rem;
}

.class-name-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.class-name-wrapper.margin-bottom-0 {
  margin-bottom: 0;
}

.color-palette-text {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

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

.text-weight-light {
  font-weight: 300;
}

.text-size-xsmall {
  font-size: 1rem;
}

.text-size-xsmall.text-style-caps {
  text-transform: uppercase;
}

.style-gudie-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-gudie-content.grid {
  grid-column-gap: 3rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 2rem;
  display: grid;
}

.style-gudie-content.horizontal {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: row;
}

.color-palette {
  border-radius: 1rem;
  width: 100%;
  height: 10rem;
}

.color-palette.black {
  background-color: #121212;
}

.color-palette.white {
  background-color: #f3f3f3;
  border: 1px solid #bbb;
}

.color-palette-card {
  grid-row-gap: 2rem;
  border: 1px solid #dfddda;
  border-radius: 1rem;
  flex-direction: column;
  padding: .5rem .5rem 2rem;
  display: flex;
}

.text-size-huge {
  font-size: var(--text-size--huge);
  font-weight: 300;
  line-height: 1.3;
}

.heading-1 {
  font-size: var(--heading-style--h1);
  line-height: .95;
}

.text-weight-regular {
  font-weight: 400;
}

.text-weight-bold {
  font-weight: 700;
}

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.style-guide-menu {
  grid-row-gap: 1.5rem;
  color: #121212;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.heading-5 {
  font-size: var(--heading-style--h5);
  line-height: 1.15;
}

.text-weight-medium {
  font-weight: 500;
}

.text-weight-medium.caps.regular-vw-small {
  font-size: .8vw;
}

.style-guide-content {
  margin-bottom: 6rem;
}

.style-guide-menu-links {
  grid-row-gap: 1.5rem;
  opacity: .5;
  color: #121212;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.style-guide-menu-links:hover, .style-guide-menu-links.w--current {
  opacity: 1;
}

.sticky-menu {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.heading-6 {
  font-size: var(--heading-style--h6);
  line-height: 1.15;
}

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

.style-guide-menu-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.heading-3 {
  font-size: var(--heading-style--h3);
  line-height: 1;
}

.style-tag {
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #0000001f;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.style-guide-component {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

.divider-line {
  background-color: #dfddda;
  height: 1px;
}

.caps {
  text-transform: uppercase;
}

.caps.text-weight-bold {
  font-family: Satoshi, sans-serif;
}

.speakers-card {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.5rem 2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.pricing-button {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .8rem 1rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.password {
  margin-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.opacity-50 {
  opacity: .5;
}

.faq-component {
  grid-column-gap: 0px;
  grid-row-gap: 4.8125rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-list {
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.faq-item {
  cursor: pointer;
  border-radius: .5rem;
  flex-flow: column;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

.faq-item:hover {
  background-color: var(--color--white);
}

.empty-state {
  text-align: center;
  background-color: #0000;
}

.faq-top {
  z-index: 1;
  cursor: pointer;
  position: relative;
}

.faq-title-wrapper {
  z-index: 10;
  height: 100%;
  padding-right: 5rem;
  position: relative;
}

.faq-action-wrapper {
  z-index: 25;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.arrow {
  width: auto;
  height: auto;
}

.arrow.second {
  position: relative;
  top: 1rem;
}

.faq-bottom {
  z-index: 10;
  margin-right: 12rem;
  position: relative;
  overflow: hidden;
}

.faq-bottom-content {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  opacity: .8;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  display: grid;
}

.team-member-component {
  flex-direction: column;
  margin-top: 15vh;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

.rich-text p {
  margin-bottom: 1rem;
}

.event-item {
  cursor: pointer;
  flex-flow: column;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.event-button {
  background-color: var(--color--primary-color);
  color: var(--color--white);
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .7rem 1.4rem;
  font-family: Cabinetgrotesk;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.event-button.w--current {
  font-family: Cabinetgrotesk;
}

.button-hover {
  background-color: var(--color--black);
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
  position: absolute;
}

.relative {
  z-index: 5;
  position: relative;
}

.button-submit-hover {
  background-color: var(--color--primary-color);
  border-radius: 50%;
  width: 35rem;
  height: 35rem;
  position: absolute;
}

.button-submit-hover.small {
  width: 16rem;
  height: 16rem;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.not-fount-text-size {
  font-size: 22rem;
  font-weight: 300;
  line-height: 1;
}

.button-home {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .6rem 3.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-home.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-field-contact {
  color: var(--color--black);
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #15151526;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: all .4s;
}

.text-field-contact:hover {
  border-width: 1px;
  border-color: #0000 #0000 #eb0028;
  padding-left: 1.2rem;
}

.text-field-contact:active {
  color: #212121;
}

.text-field-contact:focus {
  color: var(--color--black);
  border-color: #eb0028;
  border-radius: .5rem;
}

.submit-button {
  z-index: 3;
  color: #0000;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

.max-width-70ch {
  max-width: 70ch;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.divider-line-instructions {
  background-color: var(--color--black);
  opacity: .1;
  width: 100%;
  height: 1px;
}

.instruction-content-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  margin-top: 15vh;
  display: flex;
}

.heading-2-instruction {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
}

.heading-2-instruction.text-weight-bold {
  font-weight: 700;
}

.instruction-heading {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.margin-top-description {
  margin-top: 2rem;
}

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

.align-middle {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 71px;
  display: flex;
}

.max-width-50ch {
  max-width: 50ch;
}

.instructions-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.instructions {
  grid-column-gap: 1.3125rem;
  grid-row-gap: 1.3125rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.double-button-component {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.hero-changelog-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  padding-top: 12rem;
  padding-bottom: 3rem;
  padding-right: 3rem;
  display: flex;
  overflow: hidden;
}

.style-guide-heading {
  font-size: 6.125vw;
  font-weight: 300;
  line-height: 1;
}

.changelog-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(auto, 82%);
  width: 100%;
}

.style-guide-text {
  font-size: 2.75rem;
  line-height: 1.55;
}

.opacity-85 {
  opacity: .8;
}

.style-guide-button {
  grid-row-gap: .25rem;
  color: var(--color--black);
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
}

.style-guide-button:hover {
  opacity: .5;
}

.license-content {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.license-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.heading-4 {
  font-size: var(--heading-style--h4);
  line-height: 1.3;
}

.font-color {
  background-color: var(--color--font-color);
  color: var(--color--font-color);
}

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

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

.bento-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 7.5rem;
  display: flex;
}

.bento-header {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.tag-marquee {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  white-space: nowrap;
  align-items: center;
  max-width: 15rem;
  display: flex;
  overflow: hidden;
}

.tag {
  grid-column-gap: .6rem;
  grid-row-gap: .6rem;
  align-items: center;
  display: flex;
}

.elipse {
  background-color: var(--color--primary-color);
  border-radius: 50%;
  width: .35rem;
  height: .35rem;
}

.heading-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.max-width-45ch {
  max-width: 45ch;
}

.bento-row {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.card-small {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-big {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  align-items: flex-start;
  width: 65%;
  height: 50vh;
  padding: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-image {
  position: absolute;
  inset: 0%;
}

.card-big-content {
  z-index: 2;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.secondary-button {
  grid-column-gap: var(--secondary-button--gap);
  grid-row-gap: var(--secondary-button--gap);
  align-items: center;
  display: flex;
}

.arrow-wrapper {
  display: flex;
}

.bento-component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.card-overlay {
  z-index: 1;
  background-color: #272727e6;
  width: 100%;
  height: 100%;
  position: absolute;
}

.max-width-40ch {
  max-width: 40ch;
}

.max-width-60ch {
  max-width: 60ch;
}

.primary-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--color--white);
  border-bottom: 1px solid #eb0028;
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 1.5rem;
  transition-property: all;
  transition-duration: .25s;
  transition-timing-function: ease;
  display: flex;
  position: relative;
}

.primary-button:hover {
  border-bottom-width: 4px;
  border-bottom-color: #eb0028;
}

.sticky-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  margin-top: 12rem;
  display: flex;
  position: relative;
}

.sticky-component {
  width: 50%;
  height: 90vh;
  position: sticky;
  top: 5vh;
  bottom: 5vh;
  overflow: hidden;
}

.sticky-content {
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  padding-bottom: 20vh;
  display: flex;
  position: relative;
}

.sticky-big-image {
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.sticky-text {
  grid-column-gap: 2.8vw;
  grid-row-gap: 2.8vw;
  flex-flow: column;
  align-items: flex-start;
  margin-top: 10vw;
  margin-left: 4vw;
  margin-right: 2rem;
  display: flex;
}

.content {
  grid-column-gap: 1.667vw;
  grid-row-gap: 1.667vw;
  flex-flow: column;
  align-items: flex-start;
  max-width: 36vw;
  display: flex;
}

.content.max-width-34vw {
  max-width: 34vw;
}

.sticky-paragraph {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex-flow: column;
  align-items: flex-start;
  max-width: 30vw;
  display: flex;
}

.sticky-small-image {
  flex: none;
  align-self: flex-end;
  width: 12vw;
  height: 12vw;
  margin-top: 7.5vw;
  margin-right: 10vw;
  overflow: hidden;
}

.sticky-medium-image {
  flex: none;
  align-self: flex-end;
  width: 60%;
  height: 60vh;
  margin-top: 13.5vh;
  position: relative;
  overflow: hidden;
}

.products-wrapper {
  grid-column-gap: 2.8rem;
  grid-row-gap: 2.8rem;
  flex-flow: column;
  margin-top: 10rem;
  display: flex;
}

.products-header {
  justify-content: space-between;
  display: flex;
}

.products-heading {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.flex-horizontal {
  grid-column-gap: .7rem;
  grid-row-gap: .7rem;
  align-items: center;
  display: flex;
}

.icon-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.opacity-60 {
  opacity: .6;
}

.button-wrapper {
  z-index: 4;
  align-self: center;
  position: relative;
}

.black-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--color--black);
  color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 2rem;
  transition: all .25s;
  display: flex;
}

.black-button:hover {
  border-bottom-width: 4px;
  transform: translate(0, 3px);
}

.products-cards {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.product-link {
  background-color: var(--color--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  display: flex;
  position: relative;
}

.product-card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-card-info {
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1.5rem;
  display: flex;
}

.info {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.mask-frame {
  background-color: #e5e5e5;
  position: absolute;
  inset: auto 0% 0%;
}

.faq-wrapper {
  grid-column-gap: 3.25rem;
  grid-row-gap: 3.25rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.faq-heading {
  text-align: center;
  max-width: 50ch;
}

.faq-hover {
  border-radius: .5rem;
  transition: background-color .45s;
}

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

.products-main-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.max-width-85ch {
  max-width: 85ch;
}

.products-component {
  grid-column-gap: 4.8rem;
  grid-row-gap: 4.8rem;
  flex-flow: column;
  margin-top: 22vh;
  display: flex;
}

.text-size-medium-vw {
  font-size: 1vw;
  font-weight: 400;
}

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

.form-content {
  width: 100%;
}

.contact-button {
  background-color: #1d1d1f;
  border-radius: .3rem;
  transition: all .25s;
}

.contact-button.align-center {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.max-width-60ch-2 {
  max-width: 60ch;
}

.contact-wrapper {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  margin-bottom: 50px;
  display: flex;
}

.error-message {
  text-align: center;
  background-color: #e54e4e;
  border-radius: .5rem;
}

.hero-component {
  grid-column-gap: 1.875rem;
  grid-row-gap: 1.875rem;
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.text-size-contact {
  font-size: 1.375rem;
}

.form-wrapper {
  width: 50%;
  margin-bottom: 0;
}

.name-wrapper-contact {
  width: 100%;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.success-message {
  color: #000;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  max-width: 14rem;
  display: flex;
}

.brand.w--current {
  order: -1;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  max-width: 14rem;
  transition: transform .25s, opacity .25s;
}

.brand.w--current:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.navbar {
  z-index: 50;
  background-color: #fff0;
  position: fixed;
  inset: 0% 0% auto;
}

.links-navbar {
  border-radius: .5rem .5rem .5rem .5px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: .5rem 1rem;
  transition: background-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.links-navbar:hover {
  color: #283849;
  background-color: #f6f9fc;
}

.links-navbar.w--current {
  border: 1px solid #f6f9fc;
}

.nav-menu {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  overflow-wrap: normal;
  flex-flow: row;
  align-items: center;
  display: flex;
}

.right-navbar-content {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  flex-flow: row-reverse;
  order: -1;
  justify-content: flex-end;
  align-items: center;
  margin-left: 8.6rem;
  padding-left: 0;
  display: flex;
}

.nav-menu-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.nav-link {
  padding-left: .5rem;
  padding-right: .5rem;
  transition: all .25s;
}

.nav-link:hover {
  opacity: .6;
  transform: translate(0, 1px);
}

.navbar-component {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow-wrap: normal;
  background-color: #22222238;
  border-radius: 1.375rem;
  flex-flow: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  margin-left: 0;
  padding: 1rem 2.2rem 1rem 2.25rem;
  display: flex;
}

.overlay-navbar {
  z-index: 1;
  opacity: 0;
  background-color: #040404;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.image-parallax {
  height: 110%;
}

.hero-heading {
  z-index: 5;
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 63ch;
  margin-bottom: 3rem;
  margin-left: 3.5rem;
  display: flex;
  position: relative;
}

.hero-grid {
  z-index: 3;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  width: 100%;
  margin-left: 4.375rem;
  margin-right: 4.375rem;
  display: grid;
  position: absolute;
  inset: 0%;
}

.hero-wrapper {
  flex-flow: column;
  justify-content: flex-end;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0%;
}

.circle-hover {
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  background-color: #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.circle-hero {
  background-color: #fff;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}

.hero-hover {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  white-space: nowrap;
  border-radius: .0625rem .3125rem .3125rem;
  align-items: flex-start;
  padding: .75rem 1rem;
  display: flex;
  position: absolute;
  left: .5rem;
  overflow: hidden;
}

.hover-content {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.hover-relative {
  position: relative;
}

.arrow-hero {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-end;
  align-items: stretch;
  width: 1rem;
  height: .9rem;
  margin-top: .4rem;
  display: flex;
  overflow: hidden;
}

.button-hero {
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
}

.button-image {
  position: relative;
  inset: 0%;
}

.circular-text {
  padding: .5rem;
  position: absolute;
}

.button-arrow {
  position: absolute;
}

.hero-arrow-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 1.5rem;
  height: 2rem;
  display: flex;
  overflow: hidden;
}

.read-more-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--color--black);
  background-color: #efefef;
  border-radius: 2.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  text-decoration: none;
  display: flex;
}

.vertical-line-tag {
  background-color: var(--color--black);
  opacity: .5;
  color: #fff;
  width: 1px;
  height: 1rem;
}

.read-more-button {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  transition: all .25s;
  display: flex;
}

.read-more-button:hover {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
}

.product-title {
  max-width: 70ch;
}

.product-info {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 6rem;
  display: flex;
}

.product-component {
  grid-column-gap: 4.5rem;
  grid-row-gap: 4.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start center;
  margin-bottom: 4rem;
  display: grid;
}

.product-image {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  width: 40vw;
  max-width: 50rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-description {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-flow: column;
  align-items: flex-start;
  max-width: 50ch;
  display: flex;
}

.product-wrapper {
  width: 100%;
  margin-top: 15vh;
}

.price-tag {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  background-color: var(--color--white);
  border: .5px solid #bebebe;
  border-radius: 2px;
  align-items: center;
  padding: .625rem;
  display: flex;
}

.info-tag {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  align-items: center;
  display: flex;
}

.multi-images {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  border-radius: .5rem;
  width: 100%;
  height: 15vh;
  display: flex;
  overflow: hidden;
}

.lightbox-link {
  border-radius: .5rem;
  height: 38vh;
  overflow: hidden;
}

.product-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--color--black);
  color: var(--color--white);
  border-radius: 20rem;
  align-items: center;
  margin-top: 2.1rem;
  padding: 1.6rem 3.1rem 1.6rem 3.6rem;
  display: flex;
}

.lightbox-wrapper {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

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

.credits-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-grid {
  grid-column-gap: 5rem;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.footer-heading {
  justify-content: flex-start;
  align-items: flex-start;
  height: 3rem;
  margin-bottom: 5rem;
  display: flex;
  position: relative;
}

.text-color-black {
  color: #151515;
}

.footer-component {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 3rem;
  display: flex;
}

.footer-social {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: .7rem;
  transition: all .3s;
  display: flex;
}

.footer-social:hover {
  background-color: var(--color--primary-color);
  color: #c9d4d8;
  transform: translate(0, -2px);
}

.icon-embed {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.credits {
  text-decoration: none;
  transition: opacity .2s;
}

.credits:hover {
  opacity: .8;
}

.vertical-line {
  background-color: #8e8c87;
  width: 1px;
  height: .8rem;
}

.footer-links {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  align-items: center;
  display: none;
}

.footer-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-link {
  color: #8e8c87;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .25s;
}

.footer-link:hover {
  color: #151515;
  transform: translate(0, -2px);
}

.footer-social-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 4.8rem;
  margin-bottom: 11rem;
  display: flex;
}

.paragraph {
  color: #00000080;
}

.footer-text-size {
  font-size: 1.5rem;
}

.max-width-80ch {
  max-width: 80ch;
}

.button-navbar {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  border-radius: .25rem;
  align-items: center;
  padding: 1rem 1.5rem;
  transition: all .25s;
  display: flex;
  position: relative;
}

.button-navbar:hover {
  border-bottom-width: 2px;
}

.button-navbar.margin-left {
  margin-left: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button-border {
  border-radius: .25rem;
  justify-content: center;
  align-items: flex-end;
  max-height: 2.3rem;
  display: flex;
  overflow: hidden;
}

.heading-vw {
  font-size: 4.8vw;
  line-height: 1;
}

.regular-vw {
  font-size: 1.1vw;
}

.modal-text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  flex-flow: column;
  display: flex;
}

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

.modal-content {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.modal-button {
  color: #fbfbfb;
  text-align: center;
  cursor: pointer;
  background-color: #101011;
  border-radius: .5rem;
  width: 100%;
  padding: .8rem 1rem;
  text-decoration: none;
  transition: all .25s;
}

.modal-button:hover {
  background-color: #101011cc;
  transform: scale(.98);
}

.modal-embed {
  display: flex;
}

.delete-this {
  z-index: 20;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fbfbfb;
  border-radius: .75rem;
  flex-flow: column;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
}

.webflix-link {
  color: #101828;
}

.opacity-80 {
  opacity: .8;
}

.modal-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #101828;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.max-width-37ch {
  max-width: 37ch;
}

.logo-footer {
  width: 20rem;
  height: auto;
}

.logo-navbar {
  object-fit: contain;
  flex: 0 auto;
  order: 0;
  width: 15rem;
  min-width: 0;
  max-width: 100%;
  height: auto;
  margin-left: 0;
  overflow: clip;
}

.modal-buttons {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.exit {
  z-index: 5;
  background-color: var(--color--background-color);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
  position: relative;
  bottom: 1rem;
  left: .5rem;
}

.code-embed {
  width: .8rem;
  height: .8rem;
  display: flex;
}

.sekcjagradientowa {
  z-index: 0;
  background-color: #000;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  height: 120vh;
  min-height: 100vh;
  display: block;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.pulsgradient {
  z-index: -1;
  background-image: radial-gradient(circle, #0000 79%, #eb0028);
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0;
}

.kolo1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 4px solid #eb0028a8;
  border-radius: 50%;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 460px;
  min-width: 80px;
  height: 460px;
  min-height: 80px;
  display: block;
  position: absolute;
  inset: 902px auto auto 1764px;
  overflow: visible;
  box-shadow: inset 0 0 20px 3px #eb0028, 0 0 18px 6px #eb0028;
}

.kszta-tprawy {
  border-bottom: 70px solid red;
  border-left: 40px solid #0000;
  border-right: 40px solid #0000;
  width: 0;
  height: 0;
  position: relative;
}

.kolo1-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 4px solid #eb0028a8;
  border-radius: 50%;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 300px;
  min-width: 80px;
  height: 300px;
  min-height: 80px;
  display: block;
  position: absolute;
  inset: 1053px auto auto 1546px;
  overflow: visible;
  box-shadow: inset 0 0 20px 3px #eb0028, 0 0 18px 6px #eb0028;
}

.code-embed-2 {
  position: relative;
}

.kolo-1 {
  width: 22vh;
  height: 22vh;
  display: block;
  position: absolute;
  inset: 823px 393px 425px 1913px;
}

.kolo-2 {
  width: 20vh;
  height: 20vh;
  position: absolute;
  inset: 1091px -20px 5% 1664px;
}

.kolo-3 {
  width: 30%;
  position: relative;
  top: 415px;
  left: 1801px;
}

.trojkat-3 {
  aspect-ratio: auto;
  mix-blend-mode: normal;
  width: 20vh;
  height: 20vh;
  position: static;
  inset: auto 86% 44% auto;
  rotate: 58deg;
}

.trojkat-1 {
  opacity: 1;
  mix-blend-mode: normal;
  width: 20vh;
  height: 20vh;
  position: static;
  inset: auto 76% 76% auto;
  rotate: 60deg;
}

.trojkat-2 {
  width: 24vh;
  height: 24vh;
  position: static;
  inset: auto 85% 79% auto;
  rotate: 40deg;
}

.trojkat-4 {
  aspect-ratio: auto;
  mix-blend-mode: normal;
  width: 19vh;
  height: 19vh;
  display: block;
  position: static;
  inset: auto 89% 62% auto;
  rotate: -20deg;
}

.kolo-4 {
  width: 25vh;
  height: 25vh;
  position: absolute;
  top: 1005px;
  left: 1843px;
}

.trojkat-5 {
  aspect-ratio: auto;
  width: 24vh;
  height: 24vh;
  position: static;
  inset: auto 2% 0% auto;
  rotate: -5deg;
}

.trojkat-6 {
  width: 20vh;
  height: 20vh;
  position: static;
  inset: auto 2% 30% auto;
  rotate: -45deg;
}

.trojkat-7 {
  width: 20vh;
  height: 20vh;
  position: static;
  inset: auto -1% 13% auto;
  rotate: -55deg;
}

.trojkat-8 {
  width: 19vh;
  height: 19vh;
  position: static;
  inset: auto 12% 1% auto;
  rotate: 40deg;
}

.gradient {
  z-index: 8;
  mix-blend-mode: normal;
  background-image: radial-gradient(circle, #0000 70%, #eb00282e);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.trojkat-wrap-1 {
  width: 20vh;
  max-width: none;
  height: auto;
  display: block;
  position: absolute;
  bottom: 76%;
  right: 76%;
  overflow: visible;
}

.trojkat-wrap-2 {
  width: 24vh;
  position: absolute;
  bottom: 79%;
  right: 85%;
}

.trojkat-wrap-3 {
  width: 20vh;
  position: absolute;
  bottom: 44%;
  right: 86%;
}

.trojkat-wrap-4 {
  width: 19vh;
  position: absolute;
  bottom: 62%;
  right: 89%;
}

.trojkat-wrap-5 {
  position: absolute;
  bottom: 0%;
  right: 2%;
}

.trojkat-wrap-6 {
  position: absolute;
  bottom: 30%;
  right: 2%;
  overflow: visible;
}

.trojkat-wrap-7 {
  position: absolute;
  bottom: 13%;
  right: -1%;
}

.trojkat-wrap-8 {
  position: absolute;
  bottom: 1%;
  right: 12%;
}

.glowny-conteiner {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column-reverse;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  max-width: none;
  height: 90vh;
  padding-left: 153px;
  display: flex;
  position: relative;
  inset: -94% 0% 0% 15%;
}

.logo-trillo-pod {
  flex: none;
  width: auto;
  height: 25%;
  padding-left: 0;
  position: static;
  top: 0%;
  overflow: clip;
}

.text-block-1 {
  color: var(--color--white);
  overflow-wrap: normal;
}

.text-block-2 {
  color: var(--color--white);
}

.text-block-3 {
  color: var(--color--white);
  background-color: #0000;
}

.text-block-3:hover, .text-block-5, .text-block-4 {
  color: var(--color--white);
}

.button-with-circle-icon {
  grid-column-gap: 1.11vw;
  grid-row-gap: 1.11vw;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  color: #050505;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #f5f5f580;
  border-radius: 8.9vw;
  justify-content: center;
  align-items: center;
  min-width: 12.22vw;
  min-height: 2.8vw;
  max-height: 2.8vw;
  padding: .14vw 2.22vw;
  transition: background-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon {
  min-width: 2.2vw;
  max-width: 2.2vw;
}

.italics {
  font-style: italic;
  font-weight: 100;
}

.section-triangles {
  z-index: 1;
  background-color: var(--color--background-color);
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 60em;
  padding-top: 46px;
  display: block;
  position: relative;
  overflow: visible;
}

.max-width-30rem {
  max-width: 33.33vw;
}

.hero-wrapper-2 {
  background-image: none;
  border-radius: 48px;
  justify-content: center;
  align-items: flex-start;
  min-width: 100%;
  max-width: 100%;
  min-height: 50.6vw;
  max-height: 50.6vw;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-right: 4rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.subheading-flex {
  grid-column-gap: .56vw;
  grid-row-gap: .56vw;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-3 {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.container-3.padding-4-5rem {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.space-7rem {
  min-height: 7.8vw;
}

.hero-title {
  text-transform: uppercase;
  font-size: 6rem;
  line-height: 5.5rem;
}

.circle-absolute {
  z-index: -1;
  mix-blend-mode: soft-light;
  background-color: #c1e4c4;
  border-radius: 100px;
  min-width: 6.944vw;
  max-width: 6.944vw;
  min-height: 6.944vw;
  max-height: 6.944vw;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 3.33vw;
}

.hero-image {
  background-image: url('../images/Img-123_1Img-123.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 64px;
  min-width: 100%;
  max-width: 100%;
  min-height: 50vw;
  max-height: 50vw;
  position: absolute;
  inset: 0%;
}

.hero-block {
  grid-column-gap: 1.11vw;
  grid-row-gap: 1.11vw;
  text-align: center;
  border-radius: 48px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2.2vw 4.4vw;
  display: flex;
}

.icon-wrapper-2 {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 2.8vw;
  max-width: 2.8vw;
  min-height: 2.8vw;
  max-height: 2.8vw;
  display: flex;
  overflow: hidden;
}

.button-text-2 {
  margin-bottom: 0;
  font-size: 1.11vw;
  line-height: 1.89vw;
}

.instagram-icon {
  width: 2%;
  transition: box-shadow .3s ease-in-out;
  box-shadow: inset 0 0 11px 18px #c41c1c3b, 0 0 14px 8px #ff414133;
}

.instagram-icon.button {
  object-fit: fill;
  flex: none;
  width: 2.2rem;
  max-width: none;
  height: auto;
  display: block;
  box-shadow: 0 0 14px 8px #b8262633, inset 0 0 11px 15px #c41c1c29;
}

.in-icon {
  width: 2%;
  box-shadow: 0 0 14px 8px #0003, inset 0 0 11px 18px #c41c1c3b;
}

.in-icon.button {
  object-fit: fill;
  flex: none;
  width: 2.2rem;
  max-width: none;
  height: auto;
  margin-left: 32px;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 14px 8px #b8262633, inset 0 0 11px 15px #c41c1c29;
}

.text-block-6 {
  color: var(--color--white);
}

.div-block {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.wrapper-social {
  order: 0;
  width: auto;
  height: auto;
  display: flex;
  overflow: visible;
}

.image-3 {
  align-self: center;
  width: 10px;
  height: 10px;
}

.flex-block {
  margin-top: 13px;
}

.text-block-7, .text-block-7:active {
  color: var(--color--white);
}

.icon-2 {
  color: var(--color--white);
  margin-right: -1px;
}

.dropdown-list {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #21212138;
  border-radius: 4px;
  top: 62px;
  right: auto;
}

.dropdown-link {
  color: var(--color--white);
  -webkit-text-stroke-color: var(--color--white);
  transition: all .25s;
}

.dropdown-link:hover {
  box-shadow: inset 0 0 13px 5px #96373733, 0 0 14px 9px #a12a2a4f;
}

.dropdown {
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.dropdown:active {
  opacity: 1;
  mix-blend-mode: normal;
  transform: none;
}

.dropdown-toggle {
  justify-content: center;
  padding: 5px 19px 5px 10px;
  transition: all .25s;
  display: flex;
}

.dropdown-toggle:hover {
  opacity: .6;
  transform: translate(0, 1px);
}

.dropdown-link-2 {
  color: var(--color--white);
  transition: all .25s;
}

.dropdown-link-2:hover {
  box-shadow: inset 0 0 13px 5px #96373733, 0 0 14px 9px #a12a2a4f;
}

.glowny-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column-reverse;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 100vh;
  margin-top: 0;
  margin-left: 0;
  display: flex;
  position: relative;
  inset: 0% auto auto 0%;
  overflow: visible;
}

.text-block-8 {
  color: var(--color--white);
  font-size: var(--heading-style--h6);
  text-align: center;
  white-space: normal;
  word-break: normal;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.button-zostan {
  font-family: var(--font-family--satoshi);
  flex-flow: row;
  margin-top: 53px;
  padding-top: 0;
  padding-left: 0;
  display: block;
  position: static;
  top: 47px;
}

.div-block-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 70vh;
  padding-bottom: 0;
  display: flex;
  position: static;
  top: 104px;
}

.glow-line {
  flex: none;
  display: flex;
  position: static;
  left: -58px;
}

.obrazek-ekipa {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  aspect-ratio: auto;
  object-fit: fill;
  border-radius: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
  position: static;
  overflow: visible;
}

.image-5 {
  object-fit: contain;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 80px;
  flex: 0 auto;
  align-self: auto;
  width: 60%;
  display: inline-block;
}

.image-6 {
  flex: none;
  width: 50%;
  height: 50%;
  padding: 0;
  display: block;
}

.image-7 {
  -webkit-text-fill-color: inherit;
  object-fit: cover;
  background-clip: border-box;
  border-radius: 80px;
  flex: 0 auto;
  width: 100%;
  max-width: 100%;
  height: 80%;
  max-height: 80%;
  display: block;
  overflow: clip;
}

.div-block-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: var(--heading-style--h4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #00000080;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 50%;
  height: 50%;
  display: block;
  position: absolute;
}

.card1 {
  z-index: 1;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 3.6em;
  width: auto;
  max-width: 80%;
  height: auto;
  display: none;
  position: relative;
  overflow: hidden;
}

.image-8 {
  object-fit: cover;
  border-radius: 1em;
  width: 100%;
  height: 100%;
  position: relative;
}

.nad-epika {
  z-index: 10;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #00000078;
  border-radius: 20px;
  width: 50%;
  height: 50%;
  display: flex;
  position: absolute;
  inset: auto 0% 4% 23%;
}

.qna {
  z-index: 2;
  aspect-ratio: auto;
  object-fit: fill;
  background-color: #fff;
  display: none;
  position: relative;
}

.venue-section {
  z-index: 10;
  background-color: #efefef;
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 55em;
  padding-top: 5em;
  padding-bottom: 5em;
  display: block;
  position: relative;
  overflow: visible;
}

.section-5 {
  z-index: 1;
  background-color: #fff;
  position: relative;
}

.div-triangles {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: -251px;
  left: 0%;
  right: 0%;
  overflow: visible;
  transform: translate(0%);
}

.image-9 {
  vertical-align: baseline;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  display: block;
  position: static;
  overflow: visible;
}

.triangle-background {
  z-index: 0;
  mix-blend-mode: normal;
  flex: 0 auto;
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.body {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
  overflow: visible;
}

.text-block-9 {
  width: 50%;
  position: absolute;
}

.code-embed-3 {
  position: absolute;
}

.o-nas-text {
  font-size: var(--text-size--large);
  text-align: center;
  width: 50%;
  height: auto;
  margin-top: 84px;
  font-weight: 500;
  position: relative;
}

.text-o-nas {
  font-size: var(--heading-style--h6);
  padding-top: 0;
  font-weight: 700;
  position: relative;
}

.div-block-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
  overflow: visible;
}

.animate-span {
  display: inline;
}

.count-up {
  font-size: var(--heading-style--h5);
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  font-weight: 700;
  display: flex;
  position: static;
  top: 84px;
  left: -233px;
}

.div-block-5 {
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  display: flex;
  position: relative;
  left: -365px;
}

.counter-wrapper {
  grid-column-gap: 20rem;
  grid-row-gap: 20rem;
  flex-flow: row-reverse;
  justify-content: center;
  align-items: stretch;
  margin-top: 78px;
  display: flex;
}

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

.counter-box {
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  display: flex;
}

.venue-container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: row-reverse;
  justify-content: center;
  align-items: center;
  max-width: 1800px;
  height: auto;
  max-height: none;
  margin: 0 auto;
  display: flex;
}

.venue-text {
  width: 80%;
  max-width: 2000px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.venue-label {
  font-size: var(--text-size--large);
  font-weight: 500;
  position: relative;
  top: -83px;
}

.venue-heading {
  font-size: var(--heading-style--h6);
  border-bottom: 1px #000;
  position: relative;
  top: -58px;
}

.venue-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 90%;
  height: auto;
  display: flex;
  position: relative;
}

.venue-image {
  z-index: 1;
  width: 80%;
  height: auto;
  position: relative;
}

.blue-shadow {
  z-index: -1;
  background-color: #000;
  width: 80%;
  height: 100%;
  position: absolute;
  top: 44.5px;
  left: 132px;
}

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

.div-block-6 {
  border-bottom: 1px red;
  border-left: 1px solid red;
  border-right: 1px red;
  width: 200px;
  position: relative;
  top: -22px;
}

.background-lines {
  z-index: -6;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.glow-line1 {
  background-color: #000;
  border-top: 1px #000;
  border-radius: 20px;
  width: 200px;
  height: 2px;
  position: relative;
  top: -21px;
  overflow: hidden;
}

.div-block-7 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
}

.animation---1746547465836 {
  background-color: FFFFFF;
  width: 250px;
  height: 250px;
}

.code-embed-4 {
  margin-top: 170px;
}

.section-countdown {
  z-index: 9;
  background-color: var(--color--black);
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  display: block;
  position: relative;
  overflow: hidden;
}

.countdown-wrapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 217px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.organizatorzy-section {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #000;
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}

.div-circles {
  z-index: -5;
  pointer-events: none;
  width: 100%;
  height: auto;
  position: absolute;
  top: 757px;
  left: 0%;
  right: 0%;
}

.image-10 {
  width: 100%;
  max-width: none;
  overflow: visible;
}

.organizatorzy-container {
  flex-flow: column-reverse;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 1200px;
  display: flex;
}

.kafelki-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template: "."
                 "."
                 / minmax(200px, 1fr) 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: center;
  width: 120ch;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.organizer-card {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  flex-flow: column-reverse;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 260px;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.heading-7 {
  z-index: 30;
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: center;
  margin-top: 406px;
  margin-bottom: 91px;
  font-weight: 900;
  position: relative;
}

.glow-card {
  width: 100px;
  height: 100px;
}

.glow-inner, .glow-inner2 {
  width: 100%;
  height: 100%;
}

.person1 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 370px;
  display: flex;
  position: relative;
}

.person11 {
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  position: relative;
}

.container-grid {
  z-index: 2;
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  object-fit: fill;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(363px, 1fr));
  grid-template-areas: ".";
  grid-auto-flow: row;
  place-content: center;
  place-items: center;
  width: 100%;
  max-width: 1600px;
  margin-top: 29px;
  margin-bottom: 355px;
  display: grid;
  position: relative;
  overflow: visible;
}

.person2 {
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  display: block;
  position: relative;
}

.person3 {
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  position: relative;
}

.person44 {
  display: block;
}

.person4, .person5 {
  aspect-ratio: 3 / 4;
  opacity: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  position: relative;
}

.person6, .person7, .person8 {
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  position: relative;
}

.image-11 {
  border-radius: 8% 8% 0% 0;
  width: 100%;
  max-width: none;
  height: 67%;
  position: static;
}

.text-block-10 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  padding-top: 57px;
  font-weight: 500;
}

.text-block-11 {
  color: var(--color--white);
}

.div-block-8 {
  z-index: 100;
  background-color: #474747;
  width: 100px;
  height: 100px;
  position: relative;
}

.button-2 {
  border-radius: 8px;
}

.testbutton1 {
  background-color: #000;
  border-radius: 180px;
  width: 150px;
  height: 50px;
  position: relative;
}

.glow-button1 {
  z-index: 100;
  opacity: 1;
  text-align: justify;
  justify-content: center;
  align-items: center;
  display: none;
  position: relative;
  top: -183px;
  bottom: auto;
}

.person-modal {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  cursor: auto;
  mix-blend-mode: normal;
  object-fit: fill;
  background-color: #000000bf;
  border-radius: 8%;
  justify-content: center;
  align-items: center;
  width: 377px;
  padding: 20px 30px 50px;
  display: block;
  position: absolute;
  top: -4px;
  box-shadow: 0 0 20px -4px red;
}

.modal-content {
  width: 60vw;
  height: 60vw;
}

.div-block-9 {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
}

.text-block-12 {
  color: var(--color--white);
  text-align: center;
  overflow: visible;
}

.image-12 {
  border-top-left-radius: 8%;
  border-top-right-radius: 8%;
  width: 100%;
  height: 67%;
}

.text-block-13 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal2 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  cursor: auto;
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 30px 50px;
  position: absolute;
  top: -4px;
  left: -4px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-14 {
  color: var(--color--white);
  font-size: var(--text-size--small);
  text-align: center;
  font-weight: 400;
}

.italic-text {
  font-style: normal;
}

.image-13 {
  width: 100%;
  height: 67%;
}

.image-14 {
  border-radius: 8% 8% 0% 0%;
  width: 100%;
  height: 67%;
}

.text-block-15 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal3 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 20px 0;
  display: block;
  position: absolute;
  top: -4px;
  left: -3px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-16 {
  color: var(--color--white);
  font-size: var(--text-size--regular);
  text-align: center;
  font-weight: 400;
}

.image-15 {
  border-radius: 8% 8% 0% 0%;
  width: 100%;
  height: 67%;
}

.image-16 {
  border-top-left-radius: 8%;
  border-top-right-radius: 8%;
  width: 100%;
  height: 67%;
}

.text-block-17 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal4 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 30px 50px;
  position: absolute;
  top: -4px;
  left: -4px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-18 {
  color: var(--color--white);
  text-align: center;
}

.image-17 {
  border-top-left-radius: 8%;
  border-top-right-radius: 8%;
  width: 100%;
  height: 67%;
}

.text-block-19 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal5 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 35px 50px 50px;
  position: absolute;
  top: -4px;
  left: -5px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-20 {
  opacity: 1;
  color: var(--color--white);
  text-align: center;
}

.image-18 {
  border-top-left-radius: 8%;
  border-top-right-radius: 8%;
  width: 100%;
  height: 67%;
}

.text-block-21 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal6 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 20px 0;
  display: block;
  position: absolute;
  top: -3px;
  left: -4px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-22 {
  color: var(--color--white);
  text-align: center;
}

.image-19 {
  border-radius: 8% 8% 0% 0%;
  width: 100%;
  height: 67%;
}

.text-block-23 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal7 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 30px 30px 0;
  display: block;
  position: absolute;
  top: -2px;
  left: -5px;
  box-shadow: 0 0 20px -4px #ff0004;
}

.text-block-24 {
  color: var(--color--white);
  text-align: center;
}

.image-20 {
  border-top-left-radius: 8%;
  border-top-right-radius: 8%;
  width: 100%;
  height: 67%;
}

.text-block-25 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal8 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 35px 50px 50px;
  position: absolute;
  top: -2px;
  left: -3px;
  box-shadow: 0 0 20px -4px #ff0004;
}

.text-block-26 {
  color: var(--color--white);
  text-align: center;
}

.person9 {
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  object-fit: fill;
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  position: relative;
}

.person10, .person12 {
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  position: relative;
}

.person13 {
  z-index: 3;
  aspect-ratio: 3 / 4;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #4e4e4e38;
  border-radius: 8%;
  width: 370px;
  position: absolute;
  bottom: 353px;
}

.image-21 {
  border-radius: 8% 8% 0% 0%;
  width: 100%;
  height: 67%;
}

.text-block-27 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal9 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 20px 50px;
  display: block;
  position: absolute;
  top: -4px;
  left: -5px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-28 {
  color: var(--color--white);
  text-align: center;
}

.image-22 {
  border-radius: 8% 8% 0% 0%;
  width: 100%;
  height: 67%;
}

.text-block-29 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal10 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 20px 50px;
  display: block;
  position: absolute;
  top: -4px;
  left: -3px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-30 {
  color: var(--color--white);
  text-align: center;
}

.image-23 {
  border-top-left-radius: 8%;
  border-top-right-radius: 8%;
  width: 100%;
  height: 67%;
}

.text-block-31 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal11 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 30px 30px 50px;
  display: block;
  position: absolute;
  top: -4px;
  left: -4px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-32 {
  color: var(--color--white);
  text-align: center;
}

.image-24 {
  width: 100%;
  height: 67%;
}

.image-25 {
  border-radius: 8% 8% 0 0;
  width: 100%;
  height: 67%;
}

.text-block-33 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  padding-top: 57px;
  font-weight: 500;
}

.person-modal12 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 20px 50px;
  display: block;
  position: absolute;
  top: -4px;
  left: -3px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-34 {
  color: var(--color--white);
  text-align: center;
}

.image-26 {
  border-radius: 8% 8% 0% 0%;
  width: 100%;
  height: 67%;
}

.text-block-35 {
  color: var(--color--white);
  font-size: var(--text-size--large);
  text-align: center;
  -webkit-text-stroke-color: var(--color--white);
  padding-top: 57px;
  font-weight: 500;
}

.person-modal13 {
  z-index: 99;
  aspect-ratio: 3 / 4;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: #000000bf;
  border-radius: 8%;
  width: 377px;
  padding: 20px 15px 50px;
  position: absolute;
  top: -3px;
  left: -4px;
  box-shadow: 0 0 20px -4px red;
}

.text-block-36 {
  opacity: 1;
  color: var(--color--white);
  text-align: center;
}

.circles-background {
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}

.circle-1 {
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  display: none;
  position: absolute;
  bottom: 0;
}

.circle-2 {
  z-index: 1;
  width: 20vh;
  height: 20vh;
  display: none;
  position: absolute;
  bottom: 0;
}

.circle-div1 {
  z-index: 0;
  width: 20vh;
  height: 20vh;
  position: absolute;
  bottom: 0;
}

.div-circles2 {
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: auto;
  position: absolute;
  top: -102px;
  left: 0%;
  right: 0%;
}

.image-27 {
  width: 100%;
  max-width: none;
  overflow: visible;
}

.sekcja-partnerzy {
  z-index: 1;
  background-color: #efefef;
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
}

.heading-8 {
  font-size: var(--heading-style--h2);
  text-align: center;
  position: static;
  top: 147px;
}

.sponsorzy-loga {
  grid-column-gap: 4rem;
  grid-row-gap: 2rem;
  vertical-align: baseline;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: static;
  top: 381px;
}

.dziekujemy1 {
  font-size: var(--text-size--huge);
  font-weight: 700;
  position: static;
  top: 356px;
}

.image-28 {
  width: 300px;
  height: 100%;
  margin-top: 0;
  display: inline-block;
}

.image-29 {
  width: 100px;
  height: 100px;
}

.image-30, .image-31 {
  width: 300px;
  height: 100%;
}

.dziekujemy2 {
  font-size: var(--text-size--huge);
  font-weight: 700;
  position: static;
  top: 255px;
}

.mediale {
  grid-column-gap: 4rem;
  grid-row-gap: 2rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: static;
  top: 752px;
}

.image-32 {
  height: 100px;
}

.image-33, .image-34, .image-35 {
  width: 300px;
  height: 100%;
}

.link-block-3 {
  height: auto;
  display: block;
}

.link-block-5 {
  width: auto;
  height: auto;
  display: flex;
}

.image-36 {
  width: 5%;
  box-shadow: 0 2px 5px #0003;
}

.image-37, .image-38 {
  box-shadow: none;
  width: 60px;
}

.section-6 {
  display: none;
}

.link-2, .link-3, .text-block-37, .text-block-38 {
  color: #8e8c87;
}

.div-block-10 {
  aspect-ratio: 3 / 4;
  width: 370px;
  position: relative;
}

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

.text-block-40 {
  font-size: var(--heading-style--h2);
  text-align: left;
  color: #eb0028;
  margin-bottom: 113px;
  font-weight: 700;
}

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

.zdj-txt1 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-39 {
  width: 40vh;
  margin-right: 81px;
}

.text-block-42 {
  font-size: var(--text-size--large);
  border-bottom: 2px solid #000;
  width: auto;
  font-weight: 500;
  display: inline-block;
}

.text-block-43 {
  max-width: 1000px;
  padding-top: 5px;
}

.zdj-txt2 {
  justify-content: center;
  align-items: center;
  margin-top: 240px;
  display: flex;
}

.image-40 {
  width: 40vh;
  margin-left: 81px;
  margin-right: 0;
}

.text-block-44 {
  font-size: var(--text-size--large);
  border-bottom: 2px solid #000;
  width: auto;
  height: auto;
  font-weight: 500;
  display: inline-block;
}

.text-block-45 {
  padding-top: 5px;
}

.zdj-txt3 {
  justify-content: center;
  align-items: center;
  margin-top: 240px;
  margin-bottom: 101px;
  display: flex;
}

.image-41 {
  width: 40%;
  margin-right: 81px;
}

.text-block-46 {
  font-size: var(--text-size--large);
  border-bottom: 2px solid #000;
  width: auto;
  height: auto;
  font-weight: 500;
  display: inline-block;
}

.text-block-47 {
  padding-top: 5px;
}

.div-block-12 {
  width: 50%;
}

.section-10 {
  background-color: #000;
  flex-flow: column-reverse;
  justify-content: flex-start;
  align-items: center;
  height: 100svh;
  padding-top: 0;
  display: flex;
}

.container-4 {
  z-index: 10;
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: flex;
  position: relative;
}

.text-block-49 {
  z-index: 1;
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: center;
  font-weight: 700;
  position: relative;
}

.text-block-50 {
  color: var(--color--primary-color);
  font-size: var(--heading-style--h1);
  font-weight: 900;
}

.card-prelegent-0 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-top: 150px;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-1 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.image-42 {
  border-radius: 20px;
  width: 30%;
}

.text-block-51 {
  color: var(--color--white);
  text-align: left;
}

.text-block-52 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: left;
  font-weight: 700;
}

.div-block-13 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-left: 50px;
  display: flex;
}

.image-43 {
  border-radius: 20px;
  width: 30%;
}

.text-block-53 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: right;
  font-weight: 700;
}

.div-block-14 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-right: 50px;
  display: flex;
}

.text-block-54 {
  color: var(--color--white);
  text-align: right;
}

.background-decor {
  z-index: 0;
  pointer-events: none;
}

.card-prelegent-2 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.image-44 {
  border-radius: 20px;
  width: 30%;
}

.text-block-55 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  font-weight: 700;
}

.text-block-56 {
  color: var(--color--white);
  font-size: var(--text-size--medium);
}

.div-block-15 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-left: 50px;
  display: flex;
}

.section-11 {
  background-color: #000;
}

.container-5 {
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 0;
  position: static;
  top: -285px;
}

.image-45 {
  z-index: 10;
  flex: none;
  width: 51px;
  max-width: 51px;
  height: 51px;
  margin: 30px auto 18px;
  position: relative;
}

.code-embed-6 {
  z-index: 10;
  text-align: center;
  position: relative;
  left: 0;
}

.div-block-16 {
  flex-flow: column-reverse;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.section-12 {
  background-color: #000;
  width: auto;
  height: 20vh;
}

.typing-text {
  color: var(--color--primary-color);
  font-size: var(--heading-style--h1);
  font-weight: 900;
  overflow: hidden;
}

.card-prelegent-3 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-4 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-5 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.text-block-57 {
  color: var(--color--white);
  text-align: right;
}

.text-block-58 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: right;
  font-weight: 700;
}

.div-block-17 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-right: 50px;
  display: flex;
}

.image-46, .image-47 {
  border-radius: 20px;
  width: 30%;
}

.div-block-18 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column-reverse;
  width: 60%;
  margin-left: 50px;
  display: flex;
}

.text-block-59 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: left;
  font-weight: 700;
}

.text-block-60 {
  color: var(--color--white);
  text-align: left;
}

.image-48 {
  border-radius: 20px;
  width: 30%;
}

.text-block-61 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: right;
  font-weight: 700;
}

.div-block-19 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-right: 50px;
  display: flex;
}

.text-block-62 {
  color: var(--color--white);
  text-align: right;
}

.card-prelegent-6 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-7 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-8 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-9 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-10 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-11 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-12 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.card-prelegent-13 {
  aspect-ratio: 5 / 3;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  width: 80vh;
  margin-bottom: 300px;
  display: flex;
}

.image-49, .image-50, .image-51, .image-52, .image-53, .image-54, .image-55, .image-56 {
  border-radius: 20px;
  width: 30%;
}

.div-block-20 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-left: 50px;
  display: flex;
}

.div-block-21 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-right: 50px;
  display: flex;
}

.div-block-22 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-left: 50px;
  display: flex;
}

.div-block-23 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-right: 50px;
  display: flex;
}

.div-block-24 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-left: 50px;
  display: flex;
}

.div-block-25 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-right: 50px;
  display: flex;
}

.div-block-26 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-left: 50px;
  display: flex;
}

.div-block-27 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column-reverse;
  width: 60%;
  margin-right: 50px;
  display: flex;
}

.text-block-63 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: left;
  font-weight: 700;
}

.text-block-64 {
  color: var(--color--white);
  text-align: left;
}

.text-block-65 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: right;
  font-weight: 700;
}

.text-block-66 {
  color: var(--color--white);
  text-align: right;
}

.text-block-67 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: left;
  font-weight: 700;
}

.text-block-68 {
  color: var(--color--white);
  text-align: left;
}

.text-block-69 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: right;
  font-weight: 700;
}

.text-block-70 {
  color: var(--color--white);
  text-align: right;
}

.text-block-71 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: left;
  font-weight: 700;
}

.text-block-72 {
  color: var(--color--white);
  text-align: left;
}

.text-block-73 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: right;
  font-weight: 700;
}

.text-block-74 {
  color: var(--color--white);
  text-align: right;
}

.text-block-75 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: left;
  font-weight: 700;
}

.text-block-76 {
  color: var(--color--white);
  text-align: left;
}

.text-block-77 {
  color: var(--color--white);
  font-size: var(--heading-style--h4);
  text-align: right;
  font-weight: 700;
}

.text-block-78 {
  color: var(--color--white);
  text-align: right;
}

.dot-nav {
  z-index: 9999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.dot {
  cursor: pointer;
  background-color: #999;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: transform .3s;
  position: relative;
}

.background-wrapper {
  z-index: 0;
  pointer-events: none;
}

.list {
  color: var(--color--white);
  text-align: left;
}

.text-block-79 {
  color: var(--color--white);
}

.link-block-7, .link-block-7.w--current, .link-block-8, .link-block-9 {
  display: block;
}

.link-block-11, .link-block-12 {
  display: flex;
}

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

.link-block-13 {
  display: flex;
}

.image-57 {
  width: 300px;
}

.bold-text {
  display: flex;
}

.div-block-28 {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 223px;
  margin-bottom: 165px;
  display: flex;
}

.sponsorzy, .partoni-honorowi {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .image-20 {
    pointer-events: none;
  }

  .text-block-42 {
    width: auto;
    height: auto;
    display: inline-block;
  }

  .text-block-43 {
    padding-top: 5px;
  }

  .zdj-txt2 {
    justify-content: center;
    align-items: center;
  }

  .text-block-45 {
    max-width: 1000px;
  }

  .zdj-txt3 {
    justify-content: center;
    align-items: center;
  }

  .card-prelegent-0, .card-prelegent-1, .card-prelegent-2 {
    width: 95vh;
  }

  .image-45 {
    margin-bottom: 18px;
  }

  .card-prelegent-3, .card-prelegent-4, .card-prelegent-5, .card-prelegent-6, .card-prelegent-7, .card-prelegent-8, .card-prelegent-9, .card-prelegent-10, .card-prelegent-11, .card-prelegent-12, .card-prelegent-13 {
    width: 95vh;
  }

  .div-block-28 {
    margin-top: 253px;
  }

  .sponsorzy, .partoni-honorowi {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
}

@media screen and (min-width: 1440px) {
  .div-circles2 {
    top: -147px;
  }

  .mediale {
    width: 100%;
  }

  .text-block-42 {
    width: auto;
  }

  .text-block-43 {
    max-width: 1000px;
    padding-top: 5px;
  }

  .zdj-txt2 {
    justify-content: center;
    align-items: center;
  }

  .text-block-45 {
    max-width: 1000px;
  }

  .zdj-txt3 {
    justify-content: center;
    align-items: center;
    margin-top: 240px;
    display: flex;
  }

  .section-9 {
    width: 100%;
    height: auto;
  }

  .card-prelegent-0 {
    flex-flow: row-reverse;
    width: 110vh;
  }

  .card-prelegent-1 {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    width: 110vh;
  }

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

  .card-prelegent-2 {
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 110vh;
  }

  .card-prelegent-3, .card-prelegent-4, .card-prelegent-5 {
    width: 110vh;
  }

  .text-block-57 {
    color: var(--color--white);
  }

  .text-block-58 {
    color: var(--color--white);
    font-size: var(--heading-style--h4);
    font-weight: 700;
  }

  .div-block-17 {
    width: 60%;
  }

  .card-prelegent-6, .card-prelegent-7, .card-prelegent-8, .card-prelegent-9, .card-prelegent-10, .card-prelegent-11, .card-prelegent-12, .card-prelegent-13 {
    width: 110vh;
  }

  .bold-text {
    margin-top: 0;
  }

  .div-block-28 {
    margin-top: 346px;
  }
}

@media screen and (min-width: 1920px) {
  .div-triangles {
    display: block;
    top: -473px;
  }

  .div-circles {
    max-height: 2760px;
    top: 547px;
  }

  .div-circles2 {
    top: -264px;
  }

  .section-7 {
    height: 500px;
    position: relative;
  }

  .section-8 {
    background-color: var(--color--black);
    height: 200px;
    position: relative;
  }

  .text-block-42 {
    width: auto;
  }

  .text-block-43 {
    max-width: 1000px;
  }

  .zdj-txt2 {
    justify-content: center;
    align-items: center;
  }

  .text-block-45 {
    max-width: 1000px;
  }

  .zdj-txt3 {
    justify-content: center;
    align-items: center;
  }

  .image-41 {
    width: 40vh;
  }

  .text-block-47 {
    max-width: 1000px;
  }

  .section-10 {
    height: 100vh;
  }

  .card-prelegent-0 {
    width: 110vh;
    margin-bottom: 300px;
  }

  .card-prelegent-1 {
    aspect-ratio: 5 / 3;
    border-radius: 20px;
    width: 110vh;
    padding-bottom: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 991px) {
  .heading-2 {
    font-size: 3.5rem;
  }

  .container {
    max-width: 90vw;
  }

  .padding-global {
    padding-bottom: 0;
  }

  .section-style-guide {
    margin-top: 4rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
  }

  .heading-1 {
    font-size: 4rem;
  }

  .heading-5 {
    font-size: 2.5rem;
  }

  .text-weight-medium.caps.regular-vw-small {
    font-size: 1rem;
  }

  .heading-6 {
    font-size: 2rem;
  }

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

  .style-guide-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .speakers-card {
    padding: 1rem 1rem 2rem;
  }

  .faq-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .faq-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .faq-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 3rem;
    display: flex;
  }

  .faq-action-wrapper {
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    right: 0;
  }

  .faq-bottom {
    margin-right: 0;
  }

  .faq-bottom-content {
    grid-template-columns: 1fr;
  }

  .team-member-component {
    grid-row-gap: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .event-item {
    padding-left: 0;
    padding-right: 0;
  }

  .button-submit-hover {
    width: 52rem;
    height: 52rem;
  }

  .heading-2-instruction {
    font-size: 4.5rem;
  }

  .max-width-50ch {
    max-width: none;
  }

  .style-guide-heading {
    font-size: 7rem;
  }

  .changelog-component {
    flex-flow: column;
    display: flex;
  }

  .style-guide-text {
    font-size: 2rem;
  }

  .license-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 5.3rem;
    margin-bottom: 6rem;
  }

  .heading-4 {
    font-size: 2.7rem;
  }

  .bento-header {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .bento-row {
    flex-flow: column;
  }

  .card-small {
    order: 1;
    width: 100%;
  }

  .card-big {
    width: 100%;
  }

  .sticky-wrapper {
    margin-top: 8rem;
  }

  .content, .content.max-width-34vw {
    max-width: none;
  }

  .sticky-paragraph {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    max-width: none;
  }

  .products-wrapper {
    margin-top: 8rem;
  }

  .faq-wrapper, .products-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

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

  .max-width-60ch-2 {
    max-width: 70%;
  }

  .contact-wrapper {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
  }

  .form-wrapper {
    width: 100%;
  }

  .form {
    justify-content: flex-start;
    align-items: center;
  }

  .menu-icon {
    color: #fff;
    border: 0 solid #fff;
  }

  .menu-button {
    background-color: #0000;
    border-radius: 12px;
    padding: 12px;
    overflow: hidden;
  }

  .menu-button:active {
    background-color: #00000024;
    border-radius: 12px;
    padding: 12px;
  }

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

  .links-navbar {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-menu {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    overflow-wrap: normal;
    -webkit-text-fill-color: inherit;
    background-color: #21212138;
    background-clip: border-box;
    border-radius: 1.375rem;
    justify-content: center;
    align-items: center;
    width: 90vw;
    margin-top: 1rem;
    padding: 2rem;
    position: absolute;
    top: 200px;
    left: 5vw;
    right: 5vw;
  }

  .right-navbar-content {
    margin-left: -111px;
    padding-left: 287px;
    display: flex;
  }

  .nav-menu-wrap {
    justify-content: center;
    align-items: center;
  }

  .nav-link {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    display: flex;
  }

  .navbar-component {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1rem;
    position: relative;
  }

  .hero-heading {
    max-width: 50ch;
  }

  .hero-grid {
    display: none;
  }

  .hero-wrapper {
    justify-content: flex-end;
    align-items: stretch;
    height: 100svh;
    display: flex;
  }

  .circular-text {
    height: 7rem;
  }

  .product-info {
    order: -1;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
  }

  .product-component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .product-image {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
  }

  .product-description {
    justify-content: flex-start;
    align-items: center;
  }

  .info-tag {
    flex-flow: column;
  }

  .lightbox-link {
    height: 40vh;
  }

  .product-button {
    margin-top: 1rem;
  }

  .footer-heading {
    margin-bottom: 4rem;
  }

  .footer-component {
    min-height: 0;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .footer-social-wrapper {
    margin-bottom: 4rem;
  }

  .footer-text-size {
    font-size: 1.4rem;
  }

  .button-navbar.margin-left {
    margin-left: 0;
  }

  .heading-vw {
    font-size: 2.7rem;
    line-height: 1.2;
  }

  .regular-vw {
    font-size: 1rem;
  }

  .logo-navbar {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .trojkat-3 {
    display: none;
  }

  .trojkat-1 {
    display: none;
    bottom: 80%;
    right: 61%;
  }

  .trojkat-2 {
    right: 68%;
  }

  .trojkat-4 {
    bottom: 61%;
    right: 75%;
  }

  .trojkat-5, .trojkat-6 {
    display: none;
  }

  .trojkat-8 {
    bottom: 2%;
    right: 8%;
  }

  .trojkat-wrap-2 {
    width: 24vh;
    bottom: 83%;
    right: 59%;
  }

  .trojkat-wrap-4 {
    width: 20vh;
    bottom: 72%;
    right: 80%;
  }

  .logo-trillo-pod {
    height: 17%;
    margin-top: 328px;
    padding-left: 0;
    position: static;
    top: 238px;
    left: auto;
  }

  .button-with-circle-icon {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    border-width: .06rem;
    border-radius: 8rem;
    min-width: 11rem;
    min-height: 2.5rem;
    max-height: 2.5rem;
    padding: .125rem 2rem;
  }

  .icon {
    min-width: 2rem;
    max-width: 2rem;
    min-height: 2rem;
    max-height: 2rem;
  }

  .section-triangles {
    height: 60vh;
  }

  .max-width-30rem {
    max-width: 30rem;
  }

  .hero-wrapper-2 {
    min-height: auto;
    max-height: none;
    padding-left: 4rem;
  }

  .subheading-flex {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .container-3.padding-4-5rem {
    padding-left: 10%;
    padding-right: 10%;
  }

  .space-7rem {
    min-height: 7rem;
  }

  .hero-title {
    font-size: 5.5rem;
    line-height: 5.5rem;
  }

  .circle-absolute {
    min-width: 6.25rem;
    max-width: 6.25rem;
    min-height: 6.25rem;
    max-height: 6.25rem;
    display: none;
    inset: auto 0% -238% 18%;
  }

  .hero-image {
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
    max-height: none;
  }

  .hero-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 2rem 4rem;
  }

  .icon-wrapper-2 {
    min-width: 2.5rem;
    max-width: 2.5rem;
    min-height: 2.5rem;
    max-height: 2.5rem;
    top: 2.75rem;
    left: 2.75rem;
  }

  .button-text-2 {
    font-size: 1rem;
    line-height: 1.7rem;
  }

  .instagram-icon.button {
    object-fit: fill;
    align-self: center;
    width: 40px;
    height: 40px;
    margin-left: -40px;
    padding-left: 0;
    padding-right: 0;
    display: block;
    overflow: visible;
  }

  .in-icon.button {
    align-self: center;
    width: 40px;
    height: 40px;
    margin-left: 40px;
    padding-right: 0;
  }

  .wrapper-social {
    flex: none;
    justify-content: center;
    align-self: center;
    align-items: stretch;
    margin-left: 50px;
  }

  .link-block {
    flex: 0 auto;
    order: 0;
    justify-content: center;
    align-self: center;
    margin-left: 0;
    padding-left: 0;
    display: flex;
  }

  .link-block-2 {
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    display: flex;
  }

  .dropdown-list {
    z-index: 99;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    margin-bottom: -7.8rem;
    text-decoration: none;
    display: none;
    position: static;
    top: 0;
  }

  .dropdown-link {
    width: auto;
  }

  .dropdown {
    text-align: center;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: stretch;
    display: flex;
    top: 100%;
  }

  .dropdown-toggle {
    z-index: 2;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    display: flex;
    position: relative;
  }

  .glowny-wrapper {
    justify-content: flex-end;
    align-items: center;
    left: 0%;
  }

  .venue-section {
    background-color: #efefef;
    height: 80em;
    min-height: 80em;
  }

  .div-triangles {
    top: -108px;
  }

  .o-nas-text {
    font-size: var(--text-size--medium);
    width: 80%;
    margin-top: 21px;
  }

  .venue-container {
    flex-flow: column-reverse;
  }

  .div-circles {
    top: 1208px;
  }

  .person1 {
    width: 370px;
  }

  .container-grid {
    grid-template-columns: repeat(auto-fit, minmax(377px, 1fr));
    grid-auto-flow: row dense;
  }

  .person4 {
    aspect-ratio: 3 / 4;
    width: 370px;
  }

  .sponsorzy-loga {
    align-items: center;
  }

  .image-29 {
    width: 80px;
    height: 80px;
  }

  .link-block-4 {
    height: 80px;
  }

  .text-block-40 {
    font-size: var(--heading-style--h2);
  }

  .zdj-txt1 {
    flex-flow: column-reverse;
  }

  .image-39 {
    width: 40vh;
    margin-right: 0;
  }

  .text-block-42 {
    width: auto;
  }

  .text-block-43 {
    margin-bottom: 34px;
  }

  .zdj-txt2 {
    flex-flow: column-reverse;
  }

  .image-40 {
    margin-left: 0;
  }

  .text-block-45 {
    margin-bottom: 34px;
  }

  .zdj-txt3 {
    flex-flow: column-reverse;
  }

  .image-41 {
    width: 40vh;
    margin-right: 0;
  }

  .text-block-47 {
    margin-bottom: 34px;
  }

  .text-block-49 {
    font-size: var(--heading-style--h5);
  }

  .text-block-50 {
    font-size: var(--heading-style--h2);
  }

  .card-prelegent-0 {
    width: 90%;
  }

  .card-prelegent-1 {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    width: 90%;
  }

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

  .text-block-52 {
    font-size: var(--heading-style--h6);
  }

  .div-block-13 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .text-block-53 {
    font-size: var(--heading-style--h6);
  }

  .div-block-14 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

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

  .card-prelegent-2 {
    width: 90%;
  }

  .text-block-55 {
    font-size: var(--heading-style--h6);
  }

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

  .div-block-15 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .typing-text {
    font-size: var(--heading-style--h2);
    overflow-wrap: normal;
  }

  .card-prelegent-3, .card-prelegent-4, .card-prelegent-5 {
    width: 90%;
  }

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

  .text-block-58 {
    font-size: var(--heading-style--h6);
  }

  .div-block-17 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .div-block-18 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .text-block-59 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-61 {
    font-size: var(--heading-style--h6);
  }

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

  .card-prelegent-6, .card-prelegent-7, .card-prelegent-8, .card-prelegent-9, .card-prelegent-10, .card-prelegent-11, .card-prelegent-12, .card-prelegent-13 {
    width: 90%;
  }

  .text-block-63 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-65 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-67 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-69 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-71 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-73 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-75 {
    font-size: var(--heading-style--h6);
  }

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

  .text-block-77 {
    font-size: var(--heading-style--h6);
  }

  .text-block-78, .text-block-79, .list-item, .list-item-2, .list-item-3, .list-item-4, .list-item-5, .list-item-6 {
    font-size: var(--text-size--small);
  }

  .div-block-28 {
    margin-top: 212px;
  }
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 3rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 8rem;
  }

  .style-guide-header {
    font-size: .875rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .text-size-huge {
    line-height: 1.3;
  }

  .heading-1 {
    font-size: 3.5rem;
  }

  .style-guide-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-5 {
    font-size: 2.3rem;
    line-height: 1.15;
  }

  .heading-6 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .heading-3 {
    font-size: 2.7rem;
  }

  .style-guide-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .speakers-card {
    height: 100%;
  }

  .faq-bottom-content {
    padding-bottom: 0;
  }

  .team-member-component {
    grid-row-gap: 3rem;
  }

  .button-submit-hover {
    width: 42rem;
    height: 42rem;
  }

  .not-fount-text-size {
    font-size: 14rem;
  }

  .heading-2-instruction {
    font-size: 4rem;
  }

  .style-guide-heading {
    font-size: 6rem;
  }

  .style-guide-heading.mobile {
    font-size: 4rem;
  }

  .changelog-component {
    grid-template-columns: 1fr;
  }

  .style-guide-text {
    font-size: 2rem;
    line-height: 1.15;
  }

  .license-content {
    grid-row-gap: 4rem;
    flex-direction: column;
  }

  .license-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    margin-top: 4.2rem;
    margin-bottom: 5.7rem;
  }

  .heading-4 {
    font-size: 2.5rem;
  }

  .bento-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    margin-top: 6rem;
  }

  .card-big {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
  }

  .sticky-wrapper {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-flow: column;
    width: 100%;
    margin-top: 4rem;
  }

  .sticky-component {
    width: 100%;
    height: 50vh;
    position: relative;
  }

  .sticky-content {
    width: 100%;
    padding-bottom: 0;
  }

  .sticky-text {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 4rem;
    margin-left: 2rem;
  }

  .sticky-paragraph {
    max-width: none;
  }

  .sticky-small-image {
    width: 10rem;
    height: 10rem;
    margin-top: 4rem;
    margin-right: 4rem;
  }

  .sticky-medium-image, .products-wrapper {
    margin-top: 6rem;
  }

  .products-cards {
    flex-flow: column;
    display: flex;
  }

  .contact-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .menu-icon {
    float: none;
    clear: none;
    color: #fff;
    padding-left: 0;
  }

  .navbar-component {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
  }

  .hero-heading {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .button-hero {
    display: none;
    position: relative;
    left: 0;
  }

  .product-component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .credits-wrapper {
    flex-flow: column;
    margin-top: 1rem;
  }

  .footer-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-heading {
    height: 2rem;
  }

  .footer-component {
    padding-top: 4rem;
  }

  .footer-text-size {
    font-size: 1.3rem;
  }

  .heading-vw {
    font-size: 2.5rem;
  }

  .text-size-medium-2 {
    font-size: 1.2rem;
  }

  .delete-this {
    left: 1.5rem;
  }

  .logo-navbar {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .trojkat-1 {
    display: none;
  }

  .trojkat-4 {
    padding-left: 0;
  }

  .trojkat-5 {
    display: none;
  }

  .trojkat-wrap-4 {
    left: -149.406px;
  }

  .logo-trillo-pod {
    height: 18%;
    margin-top: 285px;
    position: static;
    top: 346px;
    left: 38px;
  }

  .icon {
    min-width: 2rem;
    max-width: 2rem;
    min-height: 2rem;
    max-height: 2rem;
  }

  .section-triangles {
    background-color: var(--color--white);
    -webkit-text-fill-color: inherit;
    background-image: linear-gradient(#efefef, #efefef);
    background-clip: border-box;
  }

  .max-width-30rem {
    max-width: 21rem;
  }

  .hero-title {
    font-size: 4rem;
    line-height: 4rem;
  }

  .hero-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .glowny-wrapper {
    justify-content: flex-end;
    align-items: center;
    left: 0%;
  }

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

  .section-2 {
    background-color: #b82121;
  }

  .image-4 {
    width: 100%;
  }

  .obrazek-ekipa {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .venue-section {
    height: 80em;
    min-height: 80em;
  }

  .div-triangles {
    height: 300px;
    top: -121px;
    transform: none;
  }

  .image-9 {
    width: 100%;
  }

  .count-up {
    left: -174px;
  }

  .counter-wrapper {
    grid-column-gap: 12rem;
    grid-row-gap: 12rem;
  }

  .venue-image-wrapper {
    flex: 0 auto;
  }

  .venue-image {
    flex: none;
    left: -15px;
  }

  .blue-shadow {
    flex: none;
    top: 36.5px;
    left: 93px;
  }

  .code-embed-5 {
    text-align: center;
    position: relative;
  }

  .heading-7 {
    font-size: var(--heading-style--h5);
  }

  .person1, .person11 {
    width: 270px;
  }

  .container-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  }

  .person2, .person3, .person4, .person5, .person6, .person7, .person8 {
    width: 270px;
  }

  .text-block-10 {
    font-size: var(--text-size--medium);
    padding-top: 42px;
    font-weight: 500;
  }

  .person-modal {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-12 {
    opacity: 1;
    font-size: var(--text-size--tiny);
  }

  .text-block-13 {
    font-size: var(--text-size--large);
    padding-top: 42px;
  }

  .person-modal2 {
    opacity: 0;
    width: 277px;
    padding: 20px 20px 0;
  }

  .text-block-14 {
    opacity: 1;
    font-size: var(--text-size--tiny);
  }

  .text-block-15 {
    font-size: var(--text-size--large);
    padding-top: 45px;
  }

  .person-modal3 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-16 {
    opacity: 1;
    font-size: var(--text-size--tiny);
  }

  .text-block-17 {
    padding-top: 42px;
  }

  .person-modal4 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-18 {
    opacity: 1;
    font-size: var(--text-size--tiny);
  }

  .text-block-19 {
    padding-top: 42px;
  }

  .person-modal5 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-block-21 {
    padding-top: 42px;
  }

  .person-modal6 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-block-23 {
    padding-top: 42px;
  }

  .person-modal7 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-block-25 {
    padding-top: 42px;
  }

  .person-modal8 {
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .person9, .person10, .person12 {
    width: 270px;
  }

  .person13 {
    width: 270px;
    bottom: 480px;
  }

  .text-block-27 {
    padding-top: 42px;
  }

  .person-modal9 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-28 {
    font-size: var(--text-size--tiny);
    font-weight: 400;
  }

  .text-block-29 {
    padding-top: 42px;
  }

  .person-modal10 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-block-31 {
    padding-top: 42px;
  }

  .person-modal11 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-block-33 {
    padding-top: 42px;
  }

  .person-modal12 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .text-block-35 {
    padding-top: 42px;
  }

  .person-modal13 {
    opacity: 0;
    width: 277px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .sponsorzy-loga {
    flex-flow: wrap;
    width: auto;
    height: auto;
  }

  .dziekujemy1 {
    text-align: center;
  }

  .image-29 {
    width: 100px;
    height: 100px;
  }

  .dziekujemy2 {
    text-align: center;
  }

  .mediale {
    flex-flow: wrap;
    width: auto;
    height: auto;
  }

  .link-block-4 {
    width: 100px;
    height: auto;
  }

  .text-block-37, .text-block-38 {
    text-align: center;
  }

  .text-block-40 {
    font-size: var(--heading-style--h5);
  }

  .div-block-11 {
    width: auto;
    height: 150px;
  }

  .zdj-txt2 {
    justify-content: center;
    align-items: center;
  }

  .image-40 {
    margin-left: 0;
  }

  .image-41 {
    margin-right: 0;
  }

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

  .card-prelegent-0 {
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 90%;
    height: auto;
  }

  .card-prelegent-1 {
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: center;
  }

  .image-42 {
    width: 90%;
    height: 50%;
    min-height: 400px;
  }

  .text-block-51 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .div-block-13 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .image-43 {
    width: 90%;
    height: 50%;
    min-height: 400px;
  }

  .text-block-53 {
    font-size: var(--heading-style--h6);
    text-align: center;
  }

  .div-block-14 {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

  .text-block-54 {
    font-size: var(--text-size--small);
    text-align: center;
    margin-bottom: 30px;
  }

  .card-prelegent-2 {
    flex-flow: column-reverse;
    width: 90%;
  }

  .image-44 {
    width: 90%;
    height: 50%;
    min-height: 400px;
  }

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

  .text-block-56 {
    font-size: var(--text-size--regular);
    text-align: center;
    margin-bottom: 30px;
  }

  .div-block-15 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

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

  .typing-text {
    font-size: var(--heading-style--h4);
  }

  .card-prelegent-3, .card-prelegent-4, .card-prelegent-5 {
    flex-flow: column-reverse;
  }

  .text-block-57 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .div-block-17 {
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

  .image-46, .image-47 {
    width: 90%;
    height: 50%;
    min-height: 400px;
  }

  .div-block-18 {
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .text-block-59, .text-block-60 {
    text-align: center;
  }

  .image-48 {
    width: 90%;
    height: 50%;
    min-height: 400px;
  }

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

  .div-block-19 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

  .text-block-62 {
    text-align: center;
    margin-bottom: 30px;
  }

  .card-prelegent-6, .card-prelegent-7, .card-prelegent-8, .card-prelegent-9, .card-prelegent-10, .card-prelegent-11, .card-prelegent-12, .card-prelegent-13 {
    flex-flow: column-reverse;
  }

  .image-49, .image-50, .image-51, .image-52, .image-53, .image-54, .image-55, .image-56 {
    width: 90%;
    height: 50%;
    min-height: 400px;
  }

  .div-block-20 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .div-block-21 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

  .div-block-22 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .div-block-23 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

  .div-block-24 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .div-block-25 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

  .div-block-26 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .div-block-27 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 0;
  }

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

  .text-block-64 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .text-block-66 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .text-block-68 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .text-block-70 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .text-block-72 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .text-block-74 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .text-block-76 {
    text-align: center;
    margin-bottom: 30px;
  }

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

  .text-block-78 {
    text-align: center;
    margin-bottom: 30px;
  }

  .text-block-79 {
    margin-bottom: 30px;
  }

  .div-block-28 {
    margin-top: 195px;
  }
}

@media screen and (max-width: 479px) {
  .heading-2 {
    font-size: 2.8rem;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-1 {
    font-size: 3rem;
  }

  .style-guide-menu {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .heading-5 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .style-guide-content {
    margin-bottom: 6rem;
  }

  .sticky-menu {
    width: 100%;
  }

  .heading-6 {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .style-guide-menu-wrapper {
    width: 100%;
  }

  .heading-3 {
    font-size: 2.5rem;
  }

  .style-guide-component, .divider-line {
    width: 100%;
  }

  .faq-title-wrapper {
    padding-right: 3.5rem;
  }

  .faq-bottom-content {
    display: flex;
  }

  .button-submit-hover {
    width: 25rem;
    height: 25rem;
  }

  .not-fount-text-size {
    font-size: 7rem;
  }

  .divider-line-instructions {
    width: 100%;
  }

  .heading-2-instruction {
    font-size: 3rem;
    line-height: 1.1;
  }

  .double-button-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: center;
    width: 100%;
  }

  .hero-changelog-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .style-guide-heading {
    font-size: 5rem;
    line-height: 1.1;
  }

  .style-guide-heading.mobile {
    font-size: 3rem;
  }

  .changelog-component {
    width: 100%;
  }

  .style-guide-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .license-component {
    grid-row-gap: 1.75rem;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .heading-4 {
    font-size: 2.2rem;
  }

  .content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .products-wrapper {
    margin-top: 4rem;
  }

  .products-header {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .products-heading {
    justify-content: flex-start;
    align-items: center;
  }

  .button-wrapper {
    align-self: auto;
  }

  .max-width-60ch-2 {
    max-width: none;
  }

  .form-wrapper, .form {
    width: 100%;
  }

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

  .links-navbar {
    border-top-right-radius: 0;
    border-bottom-left-radius: .5rem;
  }

  .nav-menu {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .right-navbar-content {
    margin-left: -288px;
  }

  .read-more-tag {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-radius: 1rem;
    flex-flow: row;
    width: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .credits-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-auto-columns: 1fr;
    justify-content: flex-end;
    place-items: flex-start center;
  }

  .footer-heading {
    height: auto;
  }

  .footer-links {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-links-wrapper {
    text-align: center;
  }

  .footer-social-wrapper {
    margin-bottom: 2rem;
  }

  .footer-text-size {
    font-size: 1.2rem;
  }

  .overlay-mobile {
    z-index: 2;
    background-image: linear-gradient(0deg, var(--color--background-color), #efefef00);
    height: 50vh;
    position: absolute;
    inset: auto 0% 0;
  }

  .heading-vw {
    font-size: 2.2rem;
  }

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

  .modal-link {
    flex-flow: wrap;
  }

  .logo-navbar {
    width: 40rem;
    min-width: 0;
    max-width: 100%;
    height: 5rem;
    overflow: clip;
  }

  .trojkat-2 {
    bottom: 80%;
    right: 46%;
  }

  .trojkat-4 {
    display: none;
  }

  .trojkat-7 {
    bottom: 3%;
    right: -5%;
  }

  .trojkat-8 {
    display: none;
  }

  .logo-trillo-pod {
    vertical-align: baseline;
    flex: none;
    height: 18%;
    position: static;
    left: 0;
  }

  .icon {
    min-width: 2rem;
    max-width: 2rem;
    min-height: 2rem;
    max-height: 2rem;
  }

  .max-width-30rem {
    max-width: 12rem;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hero-image {
    min-width: 100%;
    max-width: 100%;
  }

  .hero-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .glowny-wrapper {
    flex-flow: column-reverse;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    left: 0%;
  }

  .text-block-8 {
    font-size: var(--text-size--large);
    flex: 0 auto;
  }

  .glow-line {
    width: 50px;
    overflow: clip;
  }

  .venue-section {
    height: 80em;
    min-height: 80em;
  }

  .div-triangles {
    height: 200px;
    top: -86px;
    transform: none;
  }

  .image-9 {
    width: 100%;
  }

  .o-nas-text {
    font-size: var(--text-size--regular);
  }

  .count-up {
    font-size: var(--heading-style--h6);
    left: -117px;
  }

  .counter-wrapper {
    grid-column-gap: 3.4rem;
    grid-row-gap: 3.4rem;
    margin-top: 60px;
  }

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

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

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

  .blue-shadow {
    top: 35.5px;
    left: 55px;
  }

  .venue-paragraph {
    font-size: var(--text-size--regular);
  }

  .code-embed-4 {
    position: absolute;
  }

  .countdown-wrapper {
    flex-flow: column-reverse;
    align-items: center;
  }

  .code-embed-5 {
    display: block;
    position: relative;
  }

  .organizatorzy-section {
    overflow: hidden;
  }

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

  .image-10 {
    height: 200px;
  }

  .heading-7 {
    font-size: var(--heading-style--h6);
  }

  .container-grid {
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
  }

  .person13 {
    bottom: 487px;
  }

  .person-modal12 {
    aspect-ratio: 3 / 4;
  }

  .div-circles2 {
    flex: 0 auto;
  }

  .image-27 {
    height: 200px;
  }

  .heading-8 {
    font-size: 3rem;
  }

  .image-28, .image-30, .image-31, .image-33, .image-34, .image-35 {
    width: 200px;
  }

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

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

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

  .text-block-50 {
    font-size: var(--heading-style--h6);
  }

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

  .div-block-13 {
    margin-top: auto;
    margin-bottom: auto;
  }

  .div-block-14 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
  }

  .text-block-54, .text-block-56 {
    font-size: var(--text-size--tiny);
  }

  .div-block-15 {
    grid-column-gap: 31px;
    grid-row-gap: 31px;
    width: 80%;
  }

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

  .typing-text {
    font-size: var(--heading-style--h6);
  }

  .text-block-57, .text-block-60 {
    font-size: var(--text-size--tiny);
  }

  .div-block-19 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

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

  .div-block-20, .div-block-21, .div-block-22, .div-block-23, .div-block-24, .div-block-25, .div-block-26, .div-block-27 {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
  }

  .text-block-64, .text-block-66, .text-block-68, .text-block-70, .text-block-72, .text-block-74, .text-block-76, .text-block-78 {
    font-size: var(--text-size--tiny);
  }

  .image-57 {
    width: 200px;
  }

  .div-block-28 {
    margin-top: 145px;
  }
}

#w-node-_025ffad7-ba97-2d67-7798-da5b956ea420-a98285a6 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2d45b890-81ac-44d4-4cbc-19ad610bfeec-a98285a6, #w-node-cdd64552-087e-13db-c841-a1e920531f85-a98285a6, #w-node-_1bbd5574-6adf-6bb2-c34a-12f14ba913ee-a98285a6, #w-node-_7c4e2a9c-ef83-0ca6-6462-fabd21c99ba4-a98285a6, #w-node-_67c75e6c-d40f-28c0-12e5-f4b8dd7e78ae-a98285a6, #w-node-_087db2d3-3a29-ac13-86fa-924ee10365e6-a98285a6, #w-node-_514a4e9c-5401-5976-5057-799d2d9c5959-a98285a6, #w-node-_27cdc4ca-a824-91eb-49eb-ab35f8054e02-a98285b0, #w-node-bdc51d0e-da8c-85e8-0820-4fad353d80b5-a98285b9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}