/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 28-08-22 */
/* file     -> start-slider-09 */
/* colors   -> #EE741D | rgba(238,116,29) | hsla(25,86%,53%) */
/* ------------------------------------------------------------------------------ */
/* link     -> https://codepen.io/EricPorter/pen/OJjEBrY */
/* info     -> image-slider with slide and fade effects */
/* ------------------------------------------------------------------------------ */
/* ROOT and VARIBLES */
:root {
	--hover-bgr:hsla(210,100%,56%,1);
    
    /* cards */
    --card-front-col: rgba(0,0,0,.6); /* black, gray OR client-color */
    --card-front-bgr: #fff;
    --card-back-col: #fff;
    --card-back-bgr: #EE741D;
    --card-ibox-hgt: 14rem;         /* min-height of the card - depends of the text card-back - def 14rem */
    --card-body-bdr: 1px solid rgba(0,0,0,.05);     /* border - def 1px */
    /* grid-area */
    --grid-area-gap: 1rem;          /* gap between flipboxes - def 1rem | min .3rem - check used shadow */
    --grid-area-pad: 1rem;          /* padding - check card-border-radius - def 1rem | min .3rem */
    --grid-area-bgr: none;          /* background - def none */
    --grid-area-bdr: 0px solid rgba(0,0,0,.25);     /* border - def 0px  */
    --grid-area-rad: 0rem;          /* border-radius - def 0rem */
    /* counter - card-front */ 
    --count-color: #fff;         /* color of the counter - must be the same as card-back-background AND no transparent */
    --count-size: 4rem;             /* counter size - def 4rem */
    --count-pos-top: 1.2rem;         /* counte rposition top - def 1rem */
    --count-pos-right: 1rem;      /* counter position right - def 1.2rem */
    --count-pos-bottom: 0.2rem;     /* counter position bottom - NOT IN USE */ 
    --count-width: 2px;             /* counter stroke - def 1px | max 3px */
    /* animation */
    --time-flip: 0.8s;              /* def 0.8s */
	}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 28-08-22 */
/* IMAGE-SLIDER */
/* RESET COUNTER -> SEE design.css */

@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,900");

:root {
  --titleColor: #e1e1e1;
  --primaryWhite: rgba(255,255,255,1); /* hsl(120deg, 0%, 75%); */
  --primaryColor: rgba(255,255,255,1); /* hsl(239, 100%, 81%); */
  --lineColor: hsl(120deg 0% 12%);
  --glow: #d46632;
  --hurricane: "Hurricane", cursive;
  --sassy: "Sassy Frass", cursive;
  --boxShadow: 0px 10px 10px #0000007d;
}

html {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin-right: calc(-1 * (100vw - 100%));
}

body {
  font-family: "Quicksand", sans-serif;
  background: #111;
  color: var(--primaryWhite);
  line-height: 1.5em;
  background-image: linear-gradient(90deg, var(--lineColor) 0.05rem, transparent 0.05rem);
  background-size: 33vw;
  overflow-x: hidden;
}

.console {
  position: fixed;
  width: 100%;
  height: 100vh;
}

.corner {
  position: absolute;
  --b: 1px;
  /* thickness */
  --c: #0000 90deg, #ffffff77 0;
  /* color */
  width: 2em;
  /* length */
  aspect-ratio: 1/1;
  background: conic-gradient(from 90deg at var(--b) var(--b), var(--c)) calc(100% + var(--b) / 2) calc(100% + var(--b) / 2);
  opacity: 0.3;
  margin: 0.8em;
}
.corner.corner2 {
  right: 0;
  transform: rotate(90deg);
}
.corner.corner3 {
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.corner.corner4 {
  bottom: 0;
  transform: rotate(-90deg);
}

.logo {
  position: fixed;
  opacity: 0.5;
  left: 2rem;
  top: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 9;
  color: #fff;
  text-decoration: none;
}
.logo svg {
  margin-right: 10px;
  cursor: pointer;
  color: var(--primaryColor);
}

nav.consoleNav {
  position: fixed;
  bottom: 29rem;
  z-index: 8;
  transform: rotate(90deg);
  transform-origin: bottom left;
  width: 100vh;
}
@media (max-width: 700px) {
  nav.consoleNav {
    display: none;
  }
}
nav.consoleNav a {
  position: relative;
  display: inline-block;
  font-size: 1em;
  transition: 0.3s;
  padding: 1.5em 1em 1.6rem;
  text-decoration: none;
  color: var(--primaryColor);
  border-bottom: 3px solid transparent;
}
nav.consoleNav a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  background: linear-gradient(0deg, #ffffff15, transparent);
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
nav.consoleNav a:hover {
  color: #fff;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
nav.consoleNav a:hover::before {
  height: 100%;
}
nav.consoleNav a.active {
  color: #fff;
  border-bottom: 2px solid var(--primaryWhite);
  text-decoration: none;
}

section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  grid-gap: 20px;
  place-items: center;
  min-height: 80vh;
  width: 80%;
  transition: 2s;
  border-bottom: 0.5px solid var(--lineColor);
  padding-bottom: 70px;
  margin: 15vmin auto;
  background: #ffffff08;
  border-radius: 10px;
  box-shadow: 11px 40px 60px #00000070;
}
section > * {
  padding: 2rem;
  border: 1px dotted var(--lineColor);
}

.revealGroup {
  position: relative;
  grid-column: 2/6;
  grid-row: 5/6;
}
.revealGroup img {
  height: 100%;
  width: auto;
  max-width: 40em;
  max-height: 35em;
  -o-object-fit: contain;
     object-fit: contain;
}

h2 {
  font-family: "Playfair Display", sans-serif;
  color: var(--titleColor);
  font-size: clamp(4rem, 10vw, 6rem);
  position: absolute;
  top: 25%;
  left: -17vw;
  z-index: -1;
  line-height: 4rem;
  text-align: right;
  padding-left: 1rem;
}
h2 span {
  font-family: "Hurricane", cursive;
  display: block;
  margin-right: -2rem;
  letter-spacing: initial;
  color: var(--primaryColor);
  -webkit-text-stroke: 0px var(--titleColor);
  text-stroke: 0px var(--titleColor);
  font-weight: 100;
}

.skeleton {
  color: transparent;
  -webkit-text-stroke: 1px var(--titleColor);
  text-stroke: 1px var(--titleColor);
  z-index: 1;
}

p {
  font-weight: 100;
  grid-column: 5/6;
  grid-row: 4/7;
  background: #11111166;
}
@media (max-width: 700px) {
  p {
    grid-column: 2/6;
    grid-row: 6;
    margin-top: -8vw;
  }
}
p span {
  display: block;
  color: var(--titleColor);
  font-size: 1.4em;
  font-family: "Playfair Display", sans-serif;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* GOBOX - INFO */
.goBox {
    position:relative;
    display:flex;
    grid-column:2/4;
    grid-row:5/5;
    margin-top:16rem;
    padding: 1rem 3rem;
    align-items:center;
    border: 1px solid var(--lineColor);
    box-shadow:var(--boxShadow);
    background: red; /*radial-gradient(rgba(158, 160, 255, 0.5), transparent);*/
    color: #fff;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s ease-in-out;
    }
.goBox:hover::after {
    content:'';
    position:absolute;
    top: 0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);    
    opacity:.2;
    transform: translateX(-100%) skewX(30deg);
    /*-webkit-animation: slide 0.5s;*/
    animation:slide 0.5s;
    z-index:1;
    }

@-webkit-keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.image-wrap {
  transition: 1.6s;
  transition-delay: 0.3s;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  visibility: hidden;
}

.animating .image-wrap {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: skewY(0);
  visibility: visible;
}

.image-wrap img {
  width: 100%;
  transform: scale(1.5);
}

.animating img {
  transform: scale(1);
  transition: 4s ease;
  transition-delay: -1s;
}

.fadeup {
  opacity: 0;
  transform: translateY(80px);
}

.fadeleft {
  opacity: 0;
  transform: translateX(80px);
}

.faderight {
  opacity: 0;
  transform: translateX(-80px);
}

.fading-in {
  opacity: 1;
  transition: opacity 2s ease-in-out, transform 2s ease-in-out;
  transform: translate(0px);
  transition-delay: 0.5s;
}

.social {
  width: 2em;
  height: 6em;
  position: fixed;
  z-index: 8;
  bottom: 0.5rem;
  left: 2rem;
  color: var(--primaryWhite);
}
.social::after {
  content: "";
  width: 1px;
  height: 4em;
  background: var(--primaryColor);
  display: block;
  position: absolute;
  top: -80%;
  left: 0.5em;
  transform-origin: center bottom;
  -webkit-animation: grow 2s 2s forwards;
          animation: grow 2s 2s forwards;
  opacity: 0.5;
  transform: scaley(0);
}
.social > * {
  width: 1.2em;
  height: 1em;
  cursor: pointer;
  color: var(--primaryWhite);
}
.social > *:hover > * {
  color: #fff;
}

@-webkit-keyframes grow {
  100% {
    transform: scaley(1);
  }
}

@keyframes grow {
  100% {
    transform: scaley(1);
  }
}
.progressRadial {
  transform: scale(1);
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border: 1px solid var(--primaryWhite);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media (max-width: 950px) {
  .progressRadial {
    transform: scale(0.7);
    bottom: 1rem;
    right: 1rem;
  }
}
.progressRadial::before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 0 0px var(--primaryWhite);
  border-radius: 50%;
  transition: 0.4s;
}
.progressRadial:hover::before {
  box-shadow: 0 0 10px var(--primaryColor);
}
.progressRadial .progressPercent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 49px;
  color: var(--primaryWhite);
  font-size: 0.8em;
}
.progressRadial svg {
  position: absolute;
  left: -26px;
  top: -26px;
}
.progressRadial svg .animatedRadial {
  fill: transparent;
  stroke-width: 3px;
  stroke: var(--primaryColor);
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
}
.progressRadial circle {
  fill: rgba(255, 255, 255, 0);
}

.progressBar {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--primaryColor);
  z-index: 99;
}
.progressBar::after {
  content:'';
  display: block;
  position: absolute;
  width: 4px;
  height: 8px;
  transform-origin: right-bottom;
  background: var(--primaryWhite);
  right: 0;
  bottom: 0;
}

nav.mobileNav {
  --font-size: 0.35rem;
  --borderRadius: 0;
  position: fixed;
  right: 1.8rem;
  top: 1.8rem;
  z-index: 10;
}
nav.mobileNav .burger {
  font-size: var(--font-size);
  cursor: pointer;
  padding: 3em 1.5em;
}
nav.mobileNav .burger.toggled {
  margin-right: 18px;
}
nav.mobileNav .burger > div {
  width: 4em;
  height: 2px;
  border-radius: var(--borderRadius);
  background: var(--primaryColor);
}
nav.mobileNav .burger > div::before, nav.mobileNav .burger > div::after {
  transition: font-size 0s;
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background: var(--primaryColor);
  border-radius: var(--borderRadius);
}
nav.mobileNav .burger > div::before {
  margin-top: -1.5em;
  width: 3em;
}
nav.mobileNav .burger > div::after {
  margin-top: 1.5em;
  width: 4em;
}
nav.mobileNav .burger2 > div {
  transition: background 0.4s, font-size 0s;
}
nav.mobileNav .burger2 > div::before, nav.mobileNav .burger2 > div::after {
  transition: font-size 0s;
  transform-origin: center center;
}
nav.mobileNav .burger2.toggled > div::before {
  -webkit-animation: burg2top 0.4s linear forwards;
          animation: burg2top 0.4s linear forwards;
}
nav.mobileNav .burger2.toggled > div {
  background: transparent;
}
nav.mobileNav .burger2.toggled > div::after {
  -webkit-animation: burg2bottom 0.4s linear forwards;
          animation: burg2bottom 0.4s linear forwards;
}
nav.mobileNav .burger2.unToggled > div::before {
  -webkit-animation: burg2topReset 0.4s linear forwards;
          animation: burg2topReset 0.4s linear forwards;
}
nav.mobileNav .burger2.unToggled > div {
  background: var(--primaryColor);
}
nav.mobileNav .burger2.unToggled > div::after {
  -webkit-animation: burg2bottomReset 0.4s linear forwards;
          animation: burg2bottomReset 0.4s linear forwards;
}
@-webkit-keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
    width: 4em;
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
    width: 4em;
  }
}
@keyframes burg2top {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(55deg);
    width: 4em;
  }
  100% {
    margin-top: 0em;
    transform: rotate(45deg);
    width: 4em;
  }
}
@-webkit-keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    width: 4em;
    transform: rotate(-45deg);
  }
}
@keyframes burg2bottom {
  20% {
    margin-top: 0em;
    transform: rotate(0deg);
  }
  60% {
    margin-top: 0em;
    transform: rotate(-55deg);
  }
  100% {
    margin-top: 0em;
    width: 4em;
    transform: rotate(-45deg);
  }
}
@-webkit-keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2topReset {
  0% {
    margin-top: 0em;
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: 1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: 1.5em;
    transform: rotate(0deg);
  }
}
@-webkit-keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}
@keyframes burg2bottomReset {
  0% {
    margin-top: 0em;
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(0deg);
  }
  60% {
    margin-top: -1.7em;
    transform: rotate(0deg);
  }
  100% {
    margin-top: -1.5em;
    transform: rotate(0deg);
  }
}

.mobileNavListWrap {
  display: none;
  opacity: 0;
  background: #000000f2;
  position: fixed;
  z-index: 9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  transition: 1s;
  transform: scale(0);
  border-radius: 50%;
}
.mobileNavListWrap .mobileNavList {
  list-style: none;
  padding: 3em;
  margin: 1rem;
  position: relative;
  outline: 1px solid #ffffff00;
  background: #040404;
}
.mobileNavListWrap .mobileNavList li {
  display: block;
  padding: 2em;
  overflow: hidden;
  text-align: center;
}
.mobileNavListWrap .mobileNavList li a {
  text-decoration: none;
  font-family: "Playfair Display", sans-serif;
  font-weight: 500;
  color: var(--primaryWhite);
  font-size: clamp(3rem, 10vw, 4rem);
  display: inline-block;
  transition: 0.1s;
  opacity: 0;
  white-space: nowrap;
}
.mobileNavListWrap .mobileNavList li a:hover {
  color: #fff;
  transform: scale(1.05);
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.445, 1.65, 0.455, 1.485);
}

.mobileNavListWrap.activate {
  display: flex;
  -webkit-animation: appear 0.5s forwards;
          animation: appear 0.5s forwards;
}
.mobileNavListWrap.activate .mobileNavList {
  -webkit-animation: frame 1s 1s forwards;
          animation: frame 1s 1s forwards;
  display: block;
  position: relative;
  overflow: hidden;
}
@-webkit-keyframes frame {
  to {
    outline: 1px solid #ffffff22;
  }
}
@keyframes frame {
  to {
    outline: 1px solid #ffffff22;
  }
}
.mobileNavListWrap.activate .mobileNavList li a {
  -webkit-animation: slideIn 2s forwards;
          animation: slideIn 2s forwards;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(1) a {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(2) a {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(3) a {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}
.mobileNavListWrap.activate .mobileNavList li:nth-of-type(4) a {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

@-webkit-keyframes appear {
  100% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
  }
}

@keyframes appear {
  100% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
  }
}
@-webkit-keyframes slideIn {
  100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  100% {
    opacity: 1;
  }
}
.scrollLock {
  overflow-y: hidden;
}

.blobs {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.blobs::before,
.blobs::after {
  content: "";
  width: 60vmax;
  height: 40vmax;
  position: absolute;
  left: -30vmin;
  top: -20vmin;
  -webkit-animation: morph 10s linear infinite alternate, spin 20s linear infinite;
  animation: morph 10s linear infinite alternate, spin 20s linear infinite;
  z-index: 1;
  will-change: border-radius, transform;
  transform-origin: 35% 35%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.3;
}

.blobs::before {
  background: var(--primaryColor);
}

.blobs::after {
  background: var(--primaryColor);
  width: 60vmin;
  height: 40vmin;
  left: auto;
  right: -20vmin;
  top: auto;
  bottom: -20vmin;
  animation: morph 5s linear infinite alternate, spin 26s linear infinite reverse;
  transform-origin: 20% 20%;
}

@-webkit-keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 40% 60%;
  }
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 60% 40%/70% 30% 70% 30%;
  }
  100% {
    border-radius: 40% 60%;
  }
}
@-webkit-keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}
.baseColor {
  position: absolute;
  text-align: CENTER;
  bottom: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.baseColor #baseColor {
  border-radius: 5rem;
  height: 20px;
  width: 60px;
  border: none;
  outline: none;
  -webkit-appearance: non;
  cursor: pointer;
}
.baseColor #baseColor::-webkit-color-swatch-wrapper {
  padding: 0;
}
.baseColor #baseColor::-webkit-color-swatch {
  border: none;
  border-radius: 5rem;
}
.baseColor p {
  background: transparent;
}

footer {
    border: 0px solid red;
}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 21-08-22 */
/* css-counter postion background */
/* https://stackoverflow.com/questions/43514987/css-increasing-number-as-background-images-for-css */	
.NO-show::before { 
	position:absolute;
    display:flex;
	top:var(--count-pos-top,1.2rem);
  	right:var(--count-pos-right,1.2rem);
  	bottom:var(--count-pos-bottom,0.6rem);
	justify-content:center;
    align-items:center;
    counter-increment:Element 1;
	content:counter(Element) '';
	font-size:var(--count-size,4rem); 
	font: 800 Arial;
	  -webkit-text-fill-color:transparent; /* works FF, Chrome and Edge */
	  -webkit-text-stroke:var(--count-width,1px);
	  -webkit-font-smoothing:antialiased;
	color:var(--count-color,#EE741D); /* must be the same color als card-back background */
    opacity:1;
	z-index:999;
	}
/* shadow */
/*
.shadow, .flex-item {
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.04), 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 8px 8px rgba(0, 0, 0, 0.04), 0 16px 16px rgba(0, 0, 0, 0.04);
}
*/	
/* ------------------------------------------------------------------------------ */
/* END */	
/* ------------------------------------------------------------------------------ */