/*
Theme Name: PPCcamp
Theme URI: https://www.ppccamp.sk
Author: Boldpixel
Author URI: https://www.boldpixel.cz
Description: PPCcamp
Version: 0.1.5
Text Domain: ppccamp
*/
@font-face {
  font-family: "TG Haido Grotesk";
  src: url("./assets/fonts/TGHaidoGrotesk-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TG Haido Grotesk Bold";
  src: url("./assets/fonts/TGHaidoGrotesk-Bold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TG Haido Grotesk Black";
  src: url("./assets/fonts/TGHaidoGrotesk-Black.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

:root {
  --background-color: #FAF4EC;
  --foreground-color: #000;
  --accent-color: #6840FF;
  --secondary-color: #D1FF24;
  --max-width: 1480px;
  --nav-height: 80px;
}

body {
  background: var(--background-color);
  color: var(--foreground-color);
  font-size: 16px;
  font-family: "TG Haido Grotesk";
  font-optical-sizing: auto;
  padding: 0;
  margin: 0;
  position: relative;
}

h1 {
  font-family: "TG Haido Grotesk Bold";
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-family: "TG Haido Grotesk Bold";
  font-weight: 700;
  line-height: 120%;
}

h3 {
  font-size: 3.6em;
  font-family: "TG Haido Grotesk Bold";
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  h3 {
    font-size: 2.4em;
  }
}

.fancy {
  font-family: "Lora";
  font-weight: 400;
  font-style: italic;
  font-size: 1em;
}

.highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  padding: 0.2em 0.4em;
}
.highlight .highlight-svg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-wrapper {
  padding: 1em;
  border-radius: 2rem;
  overflow: hidden;
  min-height: calc(100dvh - 2em);
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  transition: 0.2s;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 0;
    border-radius: 0 0 2rem 2rem;
    min-height: auto;
  }
}
.hero-wrapper .hero-content {
  flex: 1;
  background: #0E1114 url("./assets/img/hero-gradient.svg");
  background-size: cover;
  background-position: center calc(50% + var(--bg-y, 0px));
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 1em;
  border-radius: inherit;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 3em;
  position: relative;
}
@media (max-width: 768px) {
  .hero-wrapper .hero-content {
    padding: 160px 1em 5em 1em;
  }
  .hero-wrapper .hero-content .flex {
    width: 100%;
  }
  .hero-wrapper .hero-content .flex button {
    width: 100%;
  }
}
.hero-wrapper .hero-content::before {
  content: "";
  background-image: url("./assets/img/noise.webp");
  background-position: center;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  opacity: 0.2;
  pointer-events: none;
}
.hero-wrapper .hero-content::after {
  content: "";
  background-image: url("./assets/img/hero-grid.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center calc(50% + var(--grid-y, 0px));
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 350px;
}
.hero-wrapper .hero-content .text {
  max-width: 100%;
  margin: 0 auto;
}
.hero-wrapper .hero-content .text h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: 6em;
  line-height: 1.1;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .hero-wrapper .hero-content .text h1 {
    font-size: 2.2em;
  }
}
.hero-wrapper .hero-content .text h1 .highlight {
  font-size: 0.7em;
}
.hero-wrapper .hero-content .text h2 {
  max-width: 1000px;
  margin: 0 auto;
  font-family: "TG Haido Grotesk" !important;
  font-weight: 400;
  padding-top: 3em;
  font-size: 1.2em;
  padding-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-wrapper .hero-content .text h2 {
    flex-direction: column;
    align-items: center;
    font-size: 1.1em;
  }
}
.hero-wrapper .hero-content .text h2 span {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.hero-wrapper .hero-content .text h2 span::before {
  content: "";
  background-image: url("./assets/img/point-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.2em;
}
@media (max-width: 768px) {
  .hero-wrapper .hero-content .flex {
    flex-direction: column;
  }
}

.section-wrapper {
  max-width: var(--max-width);
  margin: 100px auto;
  padding: 1em;
}
@media (max-width: 768px) {
  .section-wrapper {
    margin: 120px 0 100px 0;
  }
}

.flex {
  display: flex;
}

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

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  transition: 0.2s;
  background: var(--background-color);
  z-index: 999;
}
.site-header.hero-nav {
  left: 2em;
  right: 2em;
  top: 2em;
  background: transparent;
}
@media (max-width: 768px) {
  .site-header.hero-nav {
    left: 0;
    right: 0;
    top: 0;
  }
}
.site-header .site-branding img {
  width: 130px;
  height: auto;
}
@media (max-width: 768px) {
  .site-header .site-branding img {
    width: 80px;
  }
}
.site-header .hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.site-header .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
  transform-origin: left center;
  border-radius: 10px;
}
.site-header .hamburger.is-active span {
  background: #000;
}
.site-header .hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
}
.site-header .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.site-header .hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}
.site-header .menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--background-color);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.site-header .menu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .menu-container ul li {
  text-align: center;
}
.site-header .menu-container ul li a {
  text-decoration: none;
  font-size: 2em;
  font-family: "TG Haido Grotesk Bold";
  color: #000;
}
.site-header .menu-container.is-open {
  opacity: 1;
  pointer-events: all;
}

.gap-5 {
  gap: 1em;
}

.home .site-header .hamburger span {
  background-color: #000;
}
.home .site-header .hamburger.is-active span {
  background-color: #000 !important;
}

.scrolled .hero-wrapper {
  padding: 0;
}
@media (max-width: 768px) {
  .scrolled .site-header.hero-nav {
    background: var(--background-color) !important;
  }
  .scrolled .site-header {
    background: var(--background-color);
  }
}

.registration-block {
  display: flex;
  flex-direction: row;
  gap: 2em;
  margin-top: -3em;
}
@media (max-width: 768px) {
  .registration-block {
    flex-direction: column;
  }
}
.registration-block .registration-info-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  width: 100%;
}
@media (max-width: 768px) {
  .registration-block .registration-info-blocks {
    grid-template-columns: 1fr;
  }
}
.registration-block .registration-info-blocks .registration-info-block {
  background: #fff;
  border-radius: 2em;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 768px) {
  .registration-block .registration-info-blocks .registration-info-block {
    grid-column: span 3;
  }
}
.registration-block .registration-info-blocks .registration-info-block .button {
  margin-top: 1em;
}
.registration-block .registration-info-blocks .registration-info-block h3 {
  margin: 0;
  font-size: 1.5em;
  font-family: "TG Haido Grotesk Bold";
  padding-bottom: 2em;
}
.registration-block .registration-info-blocks .registration-info-block div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5em;
  align-items: flex-start;
}
.registration-block .registration-info-blocks .registration-info-block div span {
  font-size: 2em;
  font-family: "TG Haido Grotesk Bold";
  line-height: 110%;
}
.registration-block .registration-info-blocks .registration-info-block div span.small {
  padding-top: 0.4em;
  width: 100%;
  display: block;
  font-size: 0.6em;
  font-family: "TG Haido Grotesk";
}

.cta {
  flex: 1;
  background: #0E1114 url("./assets/img/hero-gradient.svg");
  background-size: cover;
  background-position: center calc(50% + var(--bg-y, 0px));
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  text-align: center;
  padding: 2em;
  border-radius: inherit;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 3em;
  position: relative;
  border-radius: 2em;
  height: 100%;
  grid-column: span 3;
}
.cta::before {
  content: "";
  background-image: url("./assets/img/noise.webp");
  background-position: center;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  opacity: 0.2;
  pointer-events: none;
}
.cta .headline {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: flex-start;
}
.cta .headline h3 {
  margin: 0;
}
.cta .headline .badge {
  background: var(--secondary-color);
  padding: 0.5em 1em;
  border-radius: 2em;
  font-family: "TG Haido Grotesk Bold";
  font-size: 0.9em;
  transform: rotate(-1deg);
  color: #000;
}
.cta.stickers {
  padding-left: 380px;
}
.cta.stickers::after {
  content: "";
  background-image: url(./assets/img/stickers-register.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 230px;
  width: 370px;
  left: -40px;
  bottom: -33px;
  z-index: 1;
  transform: rotate(-5deg);
}
@media (max-width: 768px) {
  .cta.stickers::after {
    height: 170px;
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
    bottom: unset;
    top: -50px;
  }
}
@media (max-width: 768px) {
  .cta.stickers {
    padding-left: 1em;
  }
}
.cta h3 {
  font-size: 2.4em;
}
@media (max-width: 768px) {
  .cta.stickers {
    padding-top: 120px;
  }
  .cta {
    padding-left: 1em;
    flex-direction: column;
    align-items: center;
  }
  .cta .headline {
    align-items: center;
  }
  .cta h3 {
    font-size: 2.4em;
    max-width: 60%;
  }
}

.registration-block-ticket {
  flex-basis: 70%;
}
.registration-block-ticket .text {
  padding: 2em;
  background: #fff;
  border-radius: 2em 2em 0 0;
  position: relative;
}
.registration-block-ticket .text .how {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 600px;
}
.registration-block-ticket .text .how span {
  font-family: "TG Haido Grotesk Black";
  font-size: 1.4em;
  min-width: 34px;
  margin-top: 2px;
}
.registration-block-ticket .text .how .how-item {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.registration-block-ticket .text .how .how-item div {
  display: flex;
  flex-direction: column;
}
.registration-block-ticket .text .how .how-item div p:first-child {
  font-family: "TG Haido Grotesk Bold";
  margin: 0;
  font-size: 1.4em;
}
.registration-block-ticket .text .how .how-item div p:last-child {
  margin: 0;
}
.registration-block-ticket .text .sticker {
  position: absolute;
  top: 2em;
  right: 3em;
  width: 250px;
  height: auto;
}
@media (max-width: 768px) {
  .registration-block-ticket .text .sticker {
    top: -1em;
    right: -1em;
    width: 120px;
  }
}
.registration-block-ticket .cta {
  background: var(--accent-color);
  width: 100%;
  border-radius: 0 0 2em 2em;
  color: #fff;
  text-decoration: none;
  max-width: 100%;
  display: flex;
  padding: 1.4em;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6em;
  font-family: "TG Haido Grotesk Bold";
  position: relative;
}
@media (max-width: 768px) {
  .registration-block-ticket .cta {
    padding: 1em;
    flex-direction: column;
    text-align: center;
    line-height: 120%;
    gap: 1em;
  }
}
.registration-block-ticket .cta::after {
  content: "";
  background-image: url("./assets/img/ticket-divider.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -1px;
  width: 101%;
  height: 40px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}
.registration-block-ticket .cta .price {
  font-size: 1.6em;
  text-wrap: nowrap;
}
.registration-block-ticket .cta .small {
  font-family: "TG Haido Grotesk";
  font-size: 0.3em;
}
.registration-block-ticket h3 {
  margin: 0;
  font-size: 2em;
  font-family: "TG Haido Grotesk Bold";
  padding-bottom: 1em;
}

.partners {
  background-color: #fff;
  max-width: 100%;
  margin-bottom: 0;
}
.partners .partners-section {
  max-width: var(--max-width);
  margin: 0 auto;
}
.partners .partners-wrapper {
  display: flex;
  gap: 4em;
  align-items: center;
  padding: 2em 0;
}
.partners .partners-wrapper .partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  justify-content: center;
  align-items: center;
}
.partners .partners-wrapper .partners-grid img {
  width: auto;
}
.partners .partners-wrapper .partners-grid .small {
  margin-top: -2em;
}
.partners .partners-wrapper .general-partner img {
  width: 300px;
  height: auto;
}
.partners .partners-wrapper .general-partner .small {
  margin-top: 0;
}
.partners .partners-wrapper .small {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.8em;
}
.partners .partners-wrapper .divider {
  min-height: 100px;
  height: 100%;
  background: #000;
  opacity: 0.1;
  width: 1px;
  display: block;
}
@media (max-width: 768px) {
  .partners .partners-wrapper {
    padding-top: 2em;
    flex-direction: column;
    gap: 2em;
  }
  .partners .partners-wrapper .divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }
}

.interesting-points-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1em;
}
@media (max-width: 768px) {
  .interesting-points-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.interesting-points-wrapper .interesting-points {
  max-width: 50%;
}
@media (max-width: 768px) {
  .interesting-points-wrapper .interesting-points {
    max-width: 100%;
  }
}
.interesting-points-wrapper .interesting-points .headline span {
  display: block;
  width: 100%;
}
.interesting-points-wrapper .interesting-points .points {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .interesting-points-wrapper .interesting-points .points {
    gap: 1em;
  }
}
.interesting-points-wrapper .interesting-points .points span {
  background: #fff;
  padding: 1em;
  border-radius: 1em;
  display: block;
  text-align: left;
  font-size: 1.4em;
  font-family: "TG Haido Grotesk Bold";
  line-height: 130%;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
}
.interesting-points-wrapper .interesting-points .points span:before {
  content: "";
  background-image: url("./assets/img/point.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: block;
  margin-top: 0.2em;
  flex-shrink: 0;
}

.blog-section .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media (max-width: 768px) {
  .blog-section .posts {
    grid-template-columns: 1fr;
  }
}
.blog-section .posts a {
  max-width: 100%;
  text-decoration: none;
  background: #fff;
  border-radius: 2em;
  padding: 1em;
}
.blog-section .posts a .post-image {
  position: relative;
  overflow: hidden;
  border-radius: 1em;
  max-height: 300px;
  transition: 0.2s;
}
.blog-section .posts a .post-image img {
  width: 100%;
  height: auto;
}
.blog-section .posts a .post-image .arrow {
  position: absolute;
  bottom: -3em;
  right: 1em;
  height: 46px;
  width: 46px;
  opacity: 0;
  transition: 0.3s;
}
.blog-section .posts a .post-text {
  color: #000;
  padding: 1em;
}
.blog-section .posts a .post-text h4 {
  margin: 0;
  font-size: 1.6em;
  font-family: "TG Haido Grotesk Bold";
  line-height: 120%;
}
.blog-section .posts a .post-text p {
  padding-top: 0.5em;
  margin: 0;
  font-size: 1em;
  font-family: "TG Haido Grotesk";
}
.blog-section .posts a:hover .post-image {
  max-height: 350px;
}
.blog-section .posts a:hover .arrow {
  opacity: 1;
  bottom: 1em;
}
.blog-section {
  padding-bottom: 150px;
}

.footer-wrapper {
  padding-top: 5em;
}
.footer-wrapper footer {
  margin: 0 2em;
  margin-bottom: -15px;
  padding: 0 4em;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  background: var(--accent-color);
  min-height: 100px;
}
@media (max-width: 1024px) {
  .footer-wrapper footer {
    min-height: 150px;
    margin: 0 1em;
  }
}
@media (max-width: 768px) {
  .footer-wrapper footer {
    justify-content: flex-start;
    height: 100%;
    padding: 1em;
  }
}
.footer-wrapper footer .footer-bg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  right: 0;
  z-index: -1;
}
.footer-wrapper footer .footer-bg .footer-bg-mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer-wrapper footer .footer-bg .footer-bg-desktop {
    display: none;
  }
  .footer-wrapper footer .footer-bg .footer-bg-mobile {
    display: block;
  }
}
.footer-wrapper footer .footer-bg img {
  width: 100%;
  display: block;
}
.footer-wrapper footer .site-footer-branding {
  position: absolute;
  left: 2em;
  top: -5em;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  gap: 2em;
}
@media (max-width: 1024px) {
  .footer-wrapper footer .site-footer-branding {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .footer-wrapper footer .site-footer-branding {
    left: 1em;
    top: -7em;
  }
}
.footer-wrapper footer .site-footer-branding .custom-logo {
  width: 150px;
  height: auto;
  transform: rotate(-15deg);
}
.footer-wrapper footer .site-footer-branding .site-info {
  font-size: 0.8em;
  color: #fff;
}
.footer-wrapper footer .footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4em;
  color: #fff;
  margin-top: -5em;
  padding-bottom: 2em;
}
@media (max-width: 768px) {
  .footer-wrapper footer .footer-content {
    padding-top: 10em;
    flex-direction: column;
    gap: 1em;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.footer-wrapper footer .footer-content h4 {
  margin: 0;
  font-size: 1.4em;
  font-family: "TG Haido Grotesk Bold";
  padding-bottom: 1em;
}
.footer-wrapper footer .footer-content a {
  display: block;
  width: 100%;
  color: #fff;
}
.footer-wrapper footer .footer-content p {
  margin: 0;
}
.footer-wrapper footer .footer-content .social {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.footer-wrapper footer .footer-content .social a img {
  transition: 0.2s;
}
.footer-wrapper footer .footer-content .social a:hover img {
  opacity: 0.8;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 1em 2em;
  gap: 0.363636em;
  background: transparent;
  border: none;
  border-radius: 6.25rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.04545;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  word-break: break-word;
}
.button span {
  font-size: 18px !important;
}
.button__label {
  position: relative;
  text-align: center;
  transition: color 50ms ease-in-out;
}
.button__flair {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.button__flair:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 170%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.button--stroke:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.125rem solid #fff;
  border-radius: 6.25rem;
  pointer-events: none;
}
.button--stroke .button__flair {
  transform: scale(0);
  transform-origin: 0 0;
  will-change: transform;
}
@media (hover: hover) {
  .button--stroke:hover {
    color: #000;
    text-decoration: none;
  }
  .button--stroke:hover .button__label {
    transition: color 0.15s ease-in-out;
  }
  .button--stroke:hover .button__label::after {
    background-color: #000 !important;
  }
}
.button.arrow .button__label {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.button.arrow .button__label::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M5 12h14M12 5l7 7-7 7"/></svg>');
  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><path d="M5 12h14M12 5l7 7-7 7"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: var(--secondary-color);
  margin-top: 3px;
}
.button.black {
  color: #000;
}
.button.black .button__flair:before {
  background-color: #000;
}
.button.black .button__label::after {
  background-color: #000;
}
.button.black:after {
  border: 0.125rem solid #000;
}
.button.black:hover {
  color: #fff;
}
.button.black:hover .button__label::after {
  background-color: #fff !important;
}
.button.dark {
  color: var(--accent-color);
}
.button.dark .button__flair:before {
  background-color: var(--accent-color);
}
.button.dark:after {
  border: 0.125rem solid var(--accent-color);
}
.button.dark:hover {
  color: #fff;
}
.button.primary {
  color: var(--secondary-color);
}
.button.primary .button__flair:before {
  background-color: var(--secondary-color);
}
.button.primary:after {
  border: 0.125rem solid var(--secondary-color);
}
.button.primary:hover {
  color: #000;
}
.button.text {
  color: #fff;
  text-decoration: none;
  position: relative;
  border-radius: 0;
  padding: 0.5em 0;
  overflow: visible;
}
.button.text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -2px;
  border: none;
  border-bottom: 0.125rem solid #fff !important;
  transition: 0.1s;
}
.button.text:hover::after {
  border-bottom: 0 solid #fff;
  bottom: 3px;
}
.button.text.dark {
  border: none;
  color: #000;
}
.button.text.dark::after {
  border-bottom: 0.125rem solid #000 !important;
}

.stickers-wrapper {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding: 0;
  aspect-ratio: 730/482;
  flex-shrink: 0;
  margin: auto;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .stickers-wrapper {
    margin-bottom: 0;
    margin-top: 2em;
  }
}
.stickers-wrapper .sticker {
  position: absolute;
}
.stickers-wrapper .sticker img {
  width: 100%;
  height: auto;
  display: block;
}
.stickers-wrapper .sticker.sticker-1 {
  top: 10.37%;
  left: 0%;
  width: 35.75%;
  z-index: 2;
  transform: rotate(5deg);
}
.stickers-wrapper .sticker.sticker-2 {
  top: 0%;
  left: 31.5%;
  width: 33.42%;
  z-index: 1;
  transform: rotate(-6deg);
}
.stickers-wrapper .sticker.sticker-3 {
  top: 0%;
  left: 61.78%;
  width: 34.1%;
  z-index: 3;
  transform: rotate(5deg);
}
.stickers-wrapper .sticker.sticker-4 {
  top: 41.49%;
  left: 28.76%;
  width: 48.63%;
  z-index: 4;
  transform: rotate(6deg);
}
.stickers-wrapper .sticker.sticker-5 {
  top: 62.24%;
  left: 4.1%;
  width: 36.84%;
  z-index: 5;
  transform: rotate(-6deg);
}
.stickers-wrapper .sticker.sticker-6 {
  top: 72.61%;
  left: 47.94%;
  width: 52.05%;
  z-index: 6;
  transform: rotate(-5deg);
}

.page {
  padding-top: 0 !important;
}
.page h1 {
  font-size: 4em;
  padding-bottom: 2em;
}
@media (max-width: 768px) {
  .page h1 {
    font-size: 2.4em;
  }
}
.page h2 {
  font-size: 3.4em;
  padding-bottom: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .page h2 {
    font-size: 2.4em;
  }
}
.page h3 {
  font-size: 2.4em;
}
@media (max-width: 768px) {
  .page h3 {
    font-size: 1.6em;
  }
}

.mobile {
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}

.registration-page .how-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 2em;
  padding-bottom: 5em;
}
.registration-page .how-wrapper .how {
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: 840px;
  padding-top: 3em;
}
.registration-page .how-wrapper .how .step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2em;
}
.registration-page .how-wrapper .how .step .number {
  font-size: 4em;
  font-family: "TG Haido Grotesk Black";
  color: var(--accent-color);
  margin-top: -24px;
  min-width: 100px;
  flex-shrink: 0;
}
.registration-page .how-wrapper .how .step h3 {
  font-size: 2em;
  margin: 0;
  padding-bottom: 0.2em;
}
.registration-page .how-wrapper .how .step p {
  margin: 0;
}
@media (max-width: 768px) {
  .registration-page .how-wrapper {
    flex-direction: column;
  }
  .registration-page .how-wrapper .how .step .number {
    font-size: 2.4em;
    min-width: 60px;
    margin-top: -12px;
  }
  .registration-page .how-wrapper .how .step h3 {
    font-size: 1.6em;
  }
}
.registration-page .themes-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2em;
}
@media (max-width: 768px) {
  .registration-page .themes-wrapper {
    flex-direction: column;
  }
}
.registration-page .themes-wrapper .themes {
  padding-top: 8em;
}
.registration-page .themes-wrapper .themes .list {
  padding-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
}
.registration-page .themes-wrapper .themes .list span {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #fff;
  border-radius: 1em;
  padding: 1em;
  font-family: "TG Haido Grotesk Bold";
}
.registration-page .themes-wrapper .themes .list span::before {
  content: "";
  background-image: url(./assets/img/point.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 5px;
}
.registration-page .mobile {
  display: none;
  margin: 7em 0;
}
.registration-page .mobile.m-0 {
  margin: 0;
}
.registration-page .mobile .registration-banner {
  padding-top: 2em;
}
.registration-page .mobile .registration-banner::after {
  display: none;
}
@media (max-width: 768px) {
  .registration-page .desktop {
    display: none;
  }
  .registration-page .mobile {
    display: block;
  }
}

.registration-banner {
  flex: 1;
  background: #0E1114 url("./assets/img/hero-gradient.svg");
  background-size: cover;
  background-position: center calc(50% + var(--bg-y, 0px));
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: inherit;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 2em;
  position: relative;
  border-radius: 2em;
  height: 100%;
  justify-content: space-between;
  padding-top: 110px;
  max-width: 460px;
  width: 100%;
  min-width: 360px;
}
.registration-banner::before {
  content: "";
  background-image: url("./assets/img/noise.webp");
  background-position: center;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  opacity: 0.2;
  pointer-events: none;
}
.registration-banner .badge {
  background: var(--secondary-color);
  padding: 0.5em 1em;
  border-radius: 2em;
  font-family: "TG Haido Grotesk Bold";
  font-size: 0.9em;
  transform: rotate(-1deg);
  color: #000;
  display: block;
}
.registration-banner::after {
  content: "";
  background-image: url(./assets/img/stickers-register.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 170px;
  width: 320px;
  left: 50%;
  transform: translateX(-50%);
  bottom: unset;
  top: -50px;
}
.registration-banner .divider {
  width: 101%;
  margin-left: -1px;
}
.registration-banner .info {
  padding-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
}
.registration-banner .info span {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.registration-banner .info span::before {
  content: "";
  background-image: url("./assets/img/point-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.2em;
}
.registration-banner .headline {
  padding: 0 2em;
}
.registration-banner a {
  margin: 0 2em 2em 2em;
}
@media (max-width: 768px) {
  .registration-banner {
    max-width: 100%;
    min-width: 100%;
  }
  .registration-banner .headline {
    padding: 0 1em;
  }
  .registration-banner a {
    margin: 0 1em 1em 1em;
  }
}

.cta.pricing {
  margin: 2em 0;
  padding: 2em;
}
@media (max-width: 768px) {
  .cta.pricing .headline {
    width: 100%;
  }
}

.cennik-page h1 {
  padding-bottom: 0;
}
.cennik-page .info-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2em;
  margin-bottom: 5em;
}
.cennik-page .info-wrapper .info {
  padding-top: 1em;
  max-width: 50%;
}
.cennik-page .info-wrapper .info .list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: flex-start;
}
.cennik-page .info-wrapper .info .list .item {
  background: #fff;
  padding: 1em;
  border-radius: 1em;
  width: 100%;
}
.cennik-page .info-wrapper .info .list .item .strong {
  font-family: "TG Haido Grotesk Bold";
}
.cennik-page .info-wrapper .info .list .item > span::before {
  content: "";
  background-image: url("./assets/img/point-green.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-bottom: -5px;
  margin-right: 5px;
}
.cennik-page .info-wrapper .info .list .item .sublist {
  padding-left: 3em;
  display: flex;
  flex-direction: column;
}
.cennik-page .info-wrapper .info .list .item .sublist .list-item {
  width: 100%;
}
.cennik-page .info-wrapper .info a {
  color: var(--accent-color);
  font-family: "TG Haido Grotesk Bold";
}
@media (max-width: 768px) {
  .cennik-page .info-wrapper {
    flex-direction: column;
  }
  .cennik-page .info-wrapper .stickers-wrapper {
    display: none;
  }
  .cennik-page .info-wrapper .info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .cennik-page .mobile {
    padding-top: 1em;
    margin: 2em 0;
  }
}
.cennik-page h3 {
  margin-bottom: 0;
}

.speakers-page {
  padding-top: 150px;
}
@media (max-width: 768px) {
  .speakers-page {
    padding-top: 50px;
  }
}
.speakers-page .speakers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin: 3em 0;
  min-height: 750px;
}
@media (max-width: 768px) {
  .speakers-page .speakers-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .speakers-page .speakers-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.speakers-page .speakers-list .speaker .speaker-img {
  aspect-ratio: 1/1.2;
  border-radius: 2em;
  overflow: hidden;
  position: relative;
}
.speakers-page .speakers-list .speaker .speaker-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.speakers-page .speakers-list .speaker .speaker-info {
  position: absolute;
  bottom: 1em;
  left: 1em;
  right: 1em;
  padding: 1em;
  background: #fff;
  color: #000;
  border-radius: 1em;
  overflow: hidden;
}
.speakers-page .speakers-list .speaker .speaker-info h3 {
  font-size: 1.2em;
  padding: 0;
  margin: 0;
}
.speakers-page .speakers-list .speaker .speaker-info p {
  font-size: 0.9em;
}
@media (max-width: 480px) {
  .speakers-page .speakers-list .speaker .speaker-info p {
    font-size: 0.8em;
    padding: 5px 0;
    margin: 0;
  }
}
.speakers-page .speakers-list .speaker .speaker-info p .company {
  font-family: "TG Haido Grotesk Bold";
}
.speakers-page .speakers-list .speaker .speaker-info .speaker-linkedin {
  margin-bottom: -40px;
  transition: margin-bottom 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: underline;
  font-family: "TG Haido Grotesk Bold";
}
@media (max-width: 480px) {
  .speakers-page .speakers-list .speaker .speaker-info .speaker-linkedin {
    margin-bottom: 0;
  }
}
.speakers-page .speakers-list .speaker .speaker-info .speaker-linkedin img {
  height: 24px;
  width: 24px;
  filter: invert(1);
}
.speakers-page .speakers-list .speaker:hover .speaker-linkedin {
  margin-bottom: 0;
}

.article-page {
  padding-top: 150px;
  max-width: 1260px;
  margin: 0 auto;
  min-height: 100dvh;
  padding-bottom: 7em;
}
.article-page .article-image {
  max-height: 600px;
  width: 100%;
  overflow: hidden;
  border-radius: 2em;
  margin-bottom: 2em;
}
.article-page .article-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-page .article-content {
  max-width: 1000px;
  margin: 0 auto;
}
.article-page .article-meta span {
  opacity: 0.9;
  font-size: 0.9em;
}
.article-page .article-meta h1 {
  font-size: 5em;
  font-family: "TG Haido Grotesk Black";
  margin: 0;
  padding: 0;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .article-page .article-meta h1 {
    font-size: 3em;
  }
}
@media (max-width: 480px) {
  .article-page .article-meta h1 {
    font-size: 2.4em;
  }
}
.article-page .back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "TG Haido Grotesk Bold";
  text-decoration: none;
  color: var(--accent-color);
  margin-bottom: 2em;
}

.kontakt-page {
  min-height: 1000px;
}
.kontakt-page h2 {
  max-width: 850px;
}
@media (max-width: 768px) {
  .kontakt-page h2 {
    font-size: 1.4em;
  }
}
.kontakt-page .contact-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
.kontakt-page a {
  color: var(--accent-color);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .kontakt-page {
    min-height: auto;
  }
  .kontakt-page .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page {
    padding-top: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */