*,
*::after,
*::before {
  box-sizing: border-box;
}
:root {
  font-size: 16px;
}
body {
  margin: 0;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  background-image: url('../img/header-bg.jpg');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  cursor: none !important;
}
a:hover {
  cursor: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Russo One', sans-serif;
  font-weight: 300;
  color: #000000;
  /*&.animateVisible {
		opacity: 0;
		
		&.in-view {
			animation: textShowUp 0.5s ease-in forwards;
		}
	}*/
}
h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center {
  text-align: center;
}
p {
  /*&.animateVisible {
		opacity: 0;
		
		&.in-view {
			animation: textShowUp 0.5s ease-in forwards;
		}
	}*/
}
/*div {
	> p:first-child {
		animation-delay: 0.2s !important;
	}
	> p:nth-child(2) {
		animation-delay: 0.4s !important;
	}
	> p:nth-child(3) {
		animation-delay: 0.6s !important;
	}
}*/
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  display: block;
  width: 100%;
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 3px;
  font-size: 1em;
  transition: all 0.2s ease-in;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
input[type="text"]:active,
input[type="email"]:active,
input[type="tel"]:active,
select:active {
  border-color: #000000;
}
.widget-text {
  margin-bottom: 1em;
}
textarea {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}
textarea.mb {
  margin-bottom: 1em;
}
.invisible {
  display: none;
}
#body-wrapper {
  position: relative;
  overflow-x: hidden;
}
#body-wrapper.nav-open #nav {
  display: block;
  opacity: 1;
}
#body-wrapper.nav-open #header {
  background: #ffffff !important;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5) !important;
}
#body-wrapper.nav-open #header #nav-toggler span {
  background: transparent;
}
#body-wrapper.nav-open #header #nav-toggler span:before {
  top: 0px;
  transform: translateX(-50%) rotate(45deg);
}
#body-wrapper.nav-open #header #nav-toggler span:after {
  bottom: 0px;
  transform: translateX(-50%) rotate(-45deg);
}
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, #000000 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 19;
  text-align: center;
  display: none;
  opacity: 0;
  transition: all 0.2s ease-in;
}
#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav ul li a {
  text-decoration: none;
  color: #666666;
  position: relative;
  display: inline-block;
  transition: all 0.2s ease-in;
  text-shadow: 0px 0px 5px #000000;
}
#nav ul li a:after {
  content: '';
  position: absolute;
  height: 2px;
  background: #666666;
  left: 0;
  right: auto;
  bottom: 0;
  width: 0px;
  transition: all 0.2s ease-in;
}
#nav ul li a:hover {
  color: #fff;
}
#nav ul li a:hover:after {
  width: 100%;
  background: #fff;
}
#nav ul:first-child {
  font-size: 3em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#nav ul:first-child li a {
  font-family: 'Russo One', sans-serif;
}
#nav ul:last-child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1em;
  display: flex;
  gap: 1em;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 29;
}
#header .container {
  display: flex;
  justify-content: space-between;
}
#header #logo {
  width: 300px;
  height: 112px;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
#header #logo #logo-svg {
  width: 100%;
  display: block;
}
#header #logo #logo-svg .cls-1 {
  fill: #1d1d1b;
}
#header #logo #logo-svg .cls-2 {
  fill: #000000;
}
#header #nav-toggler {
  width: 46px;
  height: 46px;
  background: transparent;
  display: block;
  position: relative;
  border: none;
  cursor: none;
  margin-top: 34px;
}
#header #nav-toggler span {
  text-indent: -9999px;
  display: block;
  height: 4px;
  width: 32px;
  position: absolute;
  background: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in;
}
#header #nav-toggler span:before {
  top: -10px;
  transform: translateX(-50%);
}
#header #nav-toggler span:after {
  bottom: -10px;
  transform: translateX(-50%);
}
#header #nav-toggler span:before,
#header #nav-toggler span:after {
  content: '';
  display: block;
  height: 4px;
  width: 32px;
  position: absolute;
  background: #000000;
  left: 50%;
  transition: all 0.2s ease-in;
}
#stage {
  height: 100vh;
  position: relative;
}
#stage h1,
#stage h2,
#stage h3,
#stage h4 {
  font-size: 3.5em;
  color: #000000;
  max-width: 70%;
  margin-bottom: 0;
  margin-top: 2em;
  opacity: 0;
  animation: textShowUp 0.5s ease-in 1.5s forwards;
}
#stage p:first-child {
  font-size: 1.4em;
  max-width: 70%;
  opacity: 0;
  animation: textShowUp 0.5s ease-in 1.5s forwards;
}
#stage .btn {
  opacity: 0;
  animation: textShowUp 0.5s ease-in forwards 2s;
}
#stage .container {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}
#stage #stage-polys {
  position: absolute;
  top: 100px;
  right: 0;
  width: calc(50vw - 200px);
  height: 100vh;
  overflow: hidden;
}
#stage #stage-polys .poly {
  width: 50%;
  position: absolute;
  top: 50%;
  max-width: 350px;
}
#stage #stage-polys .poly:first-child {
  transform: translate(0, -100%);
}
#stage #stage-polys .poly:nth-child(2) {
  transform: translate(100%, -100%);
  margin-left: 2em;
}
#stage #stage-polys .poly:last-child {
  transform: translate(50%, -25%);
  margin-top: 2em;
  margin-left: 1em;
}
@media (max-width: 1400px) {
  #stage .container {
    max-width: 100vw;
  }
  #stage .container h1,
  #stage .container h2,
  #stage .container h3,
  #stage .container h4 {
    max-width: 50%;
  }
  #stage #stage-polys {
    width: 50vw;
  }
}
@media (max-width: 700px) {
  #stage .container {
    max-width: 100vw;
    position: static;
    transform: none;
  }
  #stage .container h1,
  #stage .container h2,
  #stage .container h3,
  #stage .container h4 {
    max-width: 100%;
  }
  #stage #stage-polys {
    width: 100%;
    height: calc(100vw + 60px);
    position: static;
    margin-left: 1em;
    margin-right: 1em;
  }
  #stage #stage-polys .poly {
    top: 120px;
    width: calc(50% - 2em);
  }
  #stage #stage-polys .poly:first-child {
    transform: translate(0%, 0%);
  }
  #stage #stage-polys .poly:nth-child(2) {
    transform: translate(100%, 0%);
  }
  #stage #stage-polys .poly:last-child {
    transform: translate(50%, 75%);
  }
}
#stage.loader-delay h1,
#stage.loader-delay h2,
#stage.loader-delay h3,
#stage.loader-delay h4 {
  animation-delay: 4s;
}
#stage.loader-delay p:first-child {
  animation-delay: 4s;
}
#stage.loader-delay .btn {
  animation-delay: 4.5s;
}
#stage.loader-delay #stage-polys .poly:first-child {
  animation-delay: 5.7s;
}
#stage.loader-delay #stage-polys .poly:nth-child(2) {
  animation-delay: 5.2s;
}
#stage.loader-delay #stage-polys .poly:nth-child(3) {
  animation-delay: 6.3s;
}
#substage {
  padding: 300px 0 0 0;
  text-align: center;
}
#substage h1,
#substage h2,
#substage h3,
#substage h4 {
  font-size: 3em;
  color: #000000;
}
#substage .content-text {
  max-width: 600px;
  margin: 0 auto;
}
@keyframes textShowUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes polyShowUp {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-30deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
.content {
  padding-top: 150px;
  padding-bottom: 150px;
}
.clear {
  clear: both;
}
#quizz {
  background: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}
#quizz #opener {
  background: #000000;
  color: #fff;
  padding: 2em;
  padding-top: 4em;
  padding-bottom: 4em;
  text-align: center;
}
#quizz #opener p {
  font-size: 1.2em;
}
#quizz #opener .btn {
  color: #fff;
}
.question-progress {
  position: relative;
  margin-top: 40px;
}
.question-progress #icon-runner {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2em;
  transform: translateY(0%);
  opacity: 0;
  transition: all 0.6s ease-in;
}
.question-progress #icon-finish {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2em;
  transform: translateY(0%);
  opacity: 0;
}
.question-progress #icon-trophy {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2em;
  opacity: 0;
  transform: translateY(-100%) scale(0);
  transition: 0.2s ease-in;
}
.questions .inner {
  padding: 2em;
}
.questions .btn {
  float: right;
  margin-top: 1em;
}
.questions .flex {
  display: flex;
}
.questions .flex figure {
  flex-basis: 35%;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
.questions .flex figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.questions input[type="radio"] {
  display: none;
}
.questions input[type="radio"]:checked + label {
  background: rgba(0, 0, 0, 0.1);
  border-left: 4px solid #000000;
  transform: scale(1.01);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.questions label {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background: #fff;
  display: block;
  padding: 1em;
  margin-bottom: 5px;
  transition: all 0.2s ease-in;
}
.questions label .emoji {
  font-size: 2em;
}
.questions label:hover {
  transform: scale(1.01);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.questions .boxes label {
  text-align: center;
  padding: 2em;
  flex: 1;
}
.questions .boxes input[type="radio"]:checked + label {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 4px solid #000000;
}
.poly-left .container {
  position: relative;
}
.poly-left .poly {
  width: 360px;
  flex-basis: 360px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1) rotate(0deg);
  opacity: 0.7;
  left: -260px;
  /*&:after {
			background: @gradient-light;
		}*/
}
.poly-left .poly + div {
  margin-left: 200px;
  color: #333333;
}
.poly-right .container {
  position: relative;
}
.poly-right .poly {
  width: 360px;
  flex-basis: 360px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1) rotate(0deg);
  opacity: 0.7;
  right: -260px;
  /*&:after {
			background: @gradient-light;
		}*/
}
.poly-right .poly + div {
  margin-right: 200px;
  color: #333333;
}
/*h1.in-view, h2.in-view, h3.in-view, p.in-view {
	animation: textShowUp 0.3s ease-in 0.6s forwards;
}*/
#footer {
  background-color: #000000;
  background-image: url('../img/footer-bg.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}
#footer a {
  color: #eee;
}
#footer #footer-slogan {
  background: rgba(0, 0, 0, 0.3);
  padding: 2em;
}
#footer #footer-slogan span {
  display: block;
  width: 435px;
  margin: 0 auto;
  font-size: 2em;
  font-family: 'Russo One', sans-serif;
  padding-top: 10px;
  padding-left: 100px;
  position: relative;
  height: 100px;
}
#footer #footer-slogan span:before {
  position: absolute;
  left: 0;
  top: 0;
  background: url('../img/pz-logo-w.svg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  content: '';
  display: block;
  width: 100px;
  height: 100px;
}
#footer .container.flex {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.8em;
}
#footer p {
  font-size: 0.7em;
  text-align: center;
  padding: 2em;
  margin: 0;
}
.poly {
  width: 240px;
  /*height: 260px;*/
  aspect-ratio: auto 0.9 / 1;
  background: #000000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  flex-basis: 270px;
  flex-grow: 0;
  flex-shrink: 0;
}
.poly img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  transition: all 5s ease-out;
}
.poly i {
  font-size: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 9;
}
.poly:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  /*background: @gradient;*/
  opacity: 0.3;
  transition: all 1s ease-out;
}
.poly:hover img {
  transform: scale(1.2);
}
.poly:hover:after {
  opacity: 0.1;
}
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  /*&.animateVisible {
		opacity: 0;
		transform: translateY(20px);
		transition: all 0.4s ease-in 0.3s;
		
		&.in-view {
			opacity: 1;
			transform: translateY(0px);
		}
	}*/
}
.flex {
  display: flex;
}
.flex .col {
  flex: 1;
}
.validation-error {
  background: #f8d7da;
  color: #58151c;
  border: 1px solid #f1aeb5;
  border-radius: 3px;
  font-size: 0.8em;
  padding: 1rem;
  display: none;
}
progress {
  width: 100%;
  display: block;
  height: 4px;
  margin: 0 auto;
  background: none;
  border: 0;
  position: relative;
  font-size: 0;
}
progress::-webkit-progress-bar {
  height: 4px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.1);
}
progress::-webkit-progress-value {
  display: inline-block;
  float: left;
  height: 4px;
  margin: 0px -10px 0 0;
  background: #000000;
  transition: all 0.6s ease-in;
}
.btn {
  font-family: 'Russo One', sans-serif;
  color: #000000;
  text-decoration: none;
  font-size: 1.2rem;
  pointer-events: all;
  background: transparent;
  border: none;
  -webkit-appearance: none;
}
.btn span {
  position: relative;
  background: #000000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  width: 28px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}
.btn span i {
  color: #000000;
}
.btn span i:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn span i:after {
  content: '';
  position: absolute;
  background: #fff;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 2px;
  width: 24px;
  height: 26px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  z-index: -1;
  transition: all 0.5s;
}
.btn:hover span i:before {
  animation: btnIconHover 0.5s forwards;
}
.btn:hover span i:after {
  background: #000000;
}
.btn.disabled {
  opacity: 0.7;
  pointer-events: none;
}
@keyframes btnIconHover {
  0% {
    opacity: 1;
    color: #000000;
    transform: translate(-50%, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, 150%);
  }
  51% {
    opacity: 0;
    transform: translate(-50%, -150%);
  }
  100% {
    opacity: 1;
    color: #fff;
    transform: translate(-50%, -50%);
  }
}
.cursor {
  display: none;
}
@media (any-pointer: fine) {
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
    z-index: 99999;
  }
  .cursor__inner {
    fill: #fff;
    stroke: #fff;
    stroke-width: 3;
  }
}
#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 130vw;
  height: auto;
  min-height: 150vh;
  width: auto;
  transform: translate(-50%, -50%);
  z-index: 99998;
}
#loader polygon {
  fill: #000000;
  stroke: #000000;
  /*#4a8f7e;*/
  /*linear-gradient(120deg, #274c43 0%, #4a8f7e 100%);*/
}
/*#loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: @loadergradient; 
  animation: loaderfadeOut 0.3s forwards 4s;
  z-index: 99999;
}*/
#loader-logo {
  width: 200px;
  height: 200px;
  animation: loaderrotate 3.5s forwards;
  transform-origin: 50% 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  display: none;
}
#loader-poly {
  animation: loaderflyOut 1s ease-out 2s forwards;
}
.contao-cookiebar .highlight .cc-btn.success {
  background: #000000;
  border-color: #000000;
  color: #fff;
}
.contao-cookiebar .highlight .cc-btn.success:hover {
  background: #000000;
}
#privacysettings {
  display: block;
  width: 3.6em;
  height: 4em;
  background: #fff;
  box-shadow: 0 0 0.5em 0 rgba(0, 0, 0, 0.5);
  position: fixed;
  bottom: 2em;
  right: 2em;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
#privacysettings:after {
  content: "\ebb7";
  font-family: Icofont;
  display: block;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#privacysettings:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  background: #000000;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
#privacysettings span {
  display: inline-block;
  text-indent: -9999px;
}
@keyframes loaderrotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(0);
    opacity: 1;
  }
  10% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 1;
  }
  95% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
    opacity: 0;
  }
}
@keyframes loaderflyOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loaderfadeOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
    pointer-events: none;
  }
}
@media (min-width: 700px) and (max-width: 1250px) {
  :root {
    font-size: 15px;
  }
  .poly-left .poly + div {
    margin-left: 300px;
  }
  .poly-left .poly {
    left: -160px;
  }
  .poly-right .poly + div {
    margin-right: 300px;
  }
  .poly-right .poly {
    right: -160px;
  }
}
@media (max-width: 700px) {
  #stage h1,
  #stage h2,
  #stage h3,
  #stage h4 {
    font-size: 3em;
    max-width: 100%;
  }
  #substage h1,
  #substage h2,
  #substage h3,
  #substage h4 {
    font-size: 2.5em;
  }
  #stage {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  #stage .container {
    order: 9;
  }
  #stage p:first-child {
    max-width: 100%;
  }
  .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .poly-left .poly + div {
    margin-left: 0;
  }
  .poly-left .poly {
    left: auto;
    position: static;
    transform: none;
    margin: 0 auto;
    width: 100%;
  }
  .poly-right .poly + div {
    margin-right: 0;
  }
  .poly-right .poly {
    right: auto;
    position: static;
    transform: none;
    margin: 0 auto;
    width: 100%;
  }
  .poly img {
    position: relative;
  }
  #parallax-wrapper {
    display: none;
  }
  #footer .flex .col:nth-child(2) {
    display: none;
  }
  .cursor {
    display: none !important;
    opacity: 0;
  }
  #footer #footer-slogan span {
    width: 100%;
    font-size: 1.5em;
    padding-top: 20px;
  }
  #header #logo {
    width: 220px;
    height: 82px;
  }
  #header #nav-toggler {
    margin-top: 18px;
  }
  #nav ul:first-child {
    font-size: 2.25em;
  }
  .questions .flex {
    display: block;
  }
}
