/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------- 6.0/00 - 15-12-2022
/* colors   -> #EE741D | rgba(238,116,29) | hsla(25,86%,53%) */
/* ------------------------------------------------------------------------------ */
/* link     -> https://codepen.io/sebastian-piskaty/pen/PoOqbZJ */
/* info     -> start2slider */
/* ------------------------------------------------------------------------------ */
/* ROOT and VARIABLES */

@font-face {
  font-family: 'Oxanium';
  src: url('fonts/Oxanium-VariableFont_wght.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Anodina-Light';
  src: url('fonts/Anodina-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

: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: rgb(255,255,255,.6);  /* color of the counter - must be the same as card-back-background AND no transparent */
    --count-size: 3.6rem;                 /* counter size - def 4rem */
    /*--count-pos-top:1.4rem;             /* counter position top - def 1rem */
    /*--count-pos-right:1rem;             /* counter position right - def 1.2rem */
    --count-pos-left: 2rem;       /* counter position left - NOT IN USE */
    --count-pos-bottom: .8rem;     /* counter position bottom - NOT IN USE */ 
    --count-width: 1px;             /* counter stroke - def 1px | max 3px */
    /* animation */
    --time-flip: 0.8s;              /* def 0.8s */
	}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 29-11-22 */
/* RESET COUNTER -> SEE design.css */
/* START2SLIDER */

* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #242424;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: 1em;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  font-weight: 400;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  font-weight: 400;
  display: flex;
}
figure img {
  max-width: 100%;
}

ul {
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}

a, a:hover, a:visited {
  text-decoration: none;
}

input, button {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border: 0;
  border-radius: 0;
  outline: none;
}

input[type=submit], button {
  cursor: pointer;
}

::placeholder {
  color: transparent;
}

:root {
  --width-content: 86.252em;
  --color-purple: #70163C;
  --color-purple-light: #9C2A5A;
  --color-purple-dark: #2E0F15;
  --color-green: #307351;
  --color-green-light: #A8BBB2;
  --color-gray: #d6d6d6;
  --color-blue: #068d9d;
  --color-mustard: #e3b23c;
  --grid: 90px;
  --counter-legend-size: 24;
}

@supports (content-visibility: auto) {
  [data-content-visibility=false] {
    content-visibility: auto;
    contain-intrinsic-size: var(--intrinsic-size);
  }

  [data-content-visibility=true] {
    content-visibility: visible;
  }
}
.main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.wrapper-purple {
  background: var(--color-purple);
  background: linear-gradient(to bottom, var(--color-purple) 88%, var(--color-gray) 88%);
}

.wrapper-green {
  background-color: var(--color-gray);
}

.wrapper-blue {
  position: relative;
}
.wrapper-blue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.wrapper-blue--top {
  background: linear-gradient(to right, #fff calc(50% + 1px), var(--color-mustard) calc(50% + 1px));
}
.wrapper-blue--top::after {
  background: linear-gradient(to bottom, #fff 50%, var(--color-mustard) 50%);
}
.wrapper-blue--bottom {
  background-color: var(--color-blue);
}
.wrapper-blue--bottom::after {
  background-color: var(--color-mustard);
}

.nav {
  background-color: var(--color-purple);
}
.nav-wrapper {
  width: min(100%, var(--width-content));
  padding-left: 1em;
  padding-right: 1em;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.nav-wrapper::after {
  content: "";
  width: calc(100% - 2em);
  display: block;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 0;
}
.nav__logo {
  color: #fff;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1.5em;
  letter-spacing: 1.5px;
  padding: 0.5em 0;
  margin-right: 2em;
}
.nav__menu {
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.nav__menu-item {
  color: #fff;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  padding: 1.5em 0;
  margin: auto 1em;
}
.nav__menu-item:hover, .nav__menu-item--active {
  border-bottom: 3px solid #fff;
}
.nav__menu-item:focus {
  outline: none;
}
.nav__menu li {
  border-top: 4px solid transparent;
  white-space: nowrap;
}
@media only screen and (hover: none) and (pointer: coarse) {
  .nav__menu li:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
}
.nav__menu li:not(:last-of-type):focus-within {
  background-color: #fff;
}
.nav__menu li:not(:last-of-type):focus-within .nav__menu-item {
  color: var(--color-purple);
}

.purple {
  width: 100%;
  max-width: var(--width-content);
  padding: var(--grid) 1em 0;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-gap: 0;
}
.purple__bg {
  grid-area: 2/1/10/8;
  background-color: var(--color-purple-light);
  clip-path: polygon(0 59%, 100% 59%, 100% 100%, 0% 100%);
}
.purple__img {
  grid-area: 2/2/8/7;
  justify-content: center;
  overflow: hidden;
  height: 586px;
}
.purple__img img {
  height: 100%;
  max-height: 750px;
  object-fit: cover;
  object-position: center;
  border-bottom: var(--grid) solid transparent;
  z-index: 1;
}
.purple__txt {
  grid-area: 3/9/5/16;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.green {
  width: 100%;
  max-width: var(--width-content);
  padding: var(--grid) 1em;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: repeat(11, 1fr);
  grid-gap: 0;
}
.green__txt {
  grid-area: 3/2/9/7;
  padding-right: 1em;
}
.green__bg {
  grid-area: 1/7/10/15;
  background-color: var(--color-green-light);
}
.green__img-left {
  grid-area: 3/8/12/12;
  justify-content: flex-start;
  align-self: flex-start;
}
.green__img-left img {
  width: 96%;
}
.green__img-right {
  grid-area: 3/12/9/16;
  justify-content: flex-end;
  align-self: center;
}
.green__img-right img {
  width: 94%;
}

.blue {
  padding-top: clamp(3em, 7vw, 8em);
}
.blue__header {
  display: flex;
  justify-content: space-between;
  width: var(--width-content);
  max-width: 100%;
  padding: 0 1em;
  margin: auto;
}
.blue__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: var(--width-content);
  max-width: 100%;
  padding: 0 1em 0;
  margin: auto;
}
.blue__content-left, .blue__content-right {
  width: 50%;
  z-index: 1;
}
.blue__content-left {
  padding: 0 2em 1em 0;
}
.blue__content-right img {
  padding-left: 2em;
}
.blue__img-bottom {
  padding-top: 3em;
}

.footer {
  height: 400px;
  background-color: var(--color-blue);
  padding-top: 3em;
}
.footer div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  height: 100%;
  border-top: 1px solid #fff;
  font-size: 1.5em;
}

.purple-title {
  color: #fff;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(1.8em, 6vw, 70px);
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.2;
  margin-bottom: clamp(.3em, 2vw, .8em);
}

.purple-subtitle {
  color: #fff;
  font-size: clamp(.9em, 2vw, 1.1em);
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 1.4;
  margin-bottom: clamp(2em, 2vw, 3em);
}

.green-title {
  color: #242424;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(1.5em, 5vw, 45px);
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1;
  margin-bottom: clamp(1em, 2vw, 2em);
}

.green-subtitle {
  color: #242424;
  font-size: clamp(.9em, 2vw, 1.1em);
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin-bottom: clamp(2em, 2vw, 2.5em);
}

.blue-title {
  color: var(--color-blue);
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(1.5em, 5vw, 50px);
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1;
  margin-bottom: clamp(1em, 2vw, 2em);
}

.blue-subtitle {
  color: var(--color-blue);
  font-size: clamp(.9em, 2vw, 1.1em);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: clamp(2em, 2vw, 2.5em);
}

.list {
  color: #fff;
}
.list-item:not(:last-of-type) {
  margin-bottom: clamp(1.5em, 5vw, 5em);
}
.list li > span {
  display: flex;
}
.list__title {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(1.5em, 4vw, 3em);
  line-height: 1;
  margin-top:1rem; /* self */
  margin-bottom: 0.5em;
}
.list__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(.9em, 2vw, 1.2em);
  line-height: 1.4;
}

.btn-subscribe {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.btn-subscribe input {
  background-color: transparent;
  color: #fff;
}
.btn-subscribe .label {
  flex: 0 0 55%;
  padding: 1em 0;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5em;
  position: relative;
}
.btn-subscribe .label .text {
  letter-spacing: 0.8px;
  font-size: 0.9em;
  width: 100%;
}
.btn-subscribe .label .text:focus + .placeholder, .btn-subscribe .label .text:not(:placeholder-shown) + .placeholder {
  transform: translateY(-2em);
}
.btn-subscribe .label .placeholder {
  position: absolute;
  left: 2px;
  transition: all 0.1s ease;
}
.btn-subscribe .submit {
  flex: 0 0 30%;
  font-size: 1em;
  letter-spacing: 0.4px;
  font-weight: 400;
  background-color: #fff;
  color: var(--color-purple);
  padding: 1em 3em;
  border: 2px solid transparent;
  margin-bottom: 0.5em;
  transition: all 0.3s linear 0.1s;
}
.btn-subscribe .submit:focus, .btn-subscribe .submit:hover {
  color: #fff;
  background-color: var(--color-purple-light);
  border: 2px solid #fff;
  transition: all 0.4s linear 0.2s;
}
@media (max-width: 35.938em) {
  .btn-subscribe {
    flex-direction: column;
  }
  .btn-subscribe .label,
.btn-subscribe .submit {
    flex: 1;
  }
  .btn-subscribe .submit {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}

.btn-signin {
  font-size: 0.9em;
  letter-spacing: 0.4px;
  font-weight: 300;
  background-color: #30091a;
  color: #fff;
  padding: 1em 1.5em;
  margin-left: 2em;
  border: 2px solid transparent;
}
.btn-signin:focus, .btn-signin:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
}

.btn-register {
  font-size: 1em;
  letter-spacing: 0.4px;
  font-weight: 400;
  background-color: var(--color-green);
  color: #fff;
  padding: 1em 4em;
  border: 2px solid transparent;
  transition: all 0.3s linear 0.1s;
}
.btn-register:focus, .btn-register:hover {
  color: var(--color-green);
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--color-green);
  transition: all 0.4s linear 0.2s;
}
@media (max-width: 35.938em) {
  .btn-register {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    width: 100%;
  }
}

.shadow {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.6));
}

.shadow-light {
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.4));
}

@media (max-width: 64em) {
  .purple {
    display: flex;
    flex-wrap: wrap;
    background: var(--color-purple);
    padding-top: 2em;
    padding-bottom: 2.5em;
    position: relative;
  }
  .purple__bg {
    width: calc(100% - 2em);
    height: 55%;
    position: absolute;
    top: 0;
  }
  .purple__img img {
    width: 80%;
    margin-right: auto;
    height: auto;
    border-bottom-width: 20px;
  }

  .green {
    grid-template-columns: repeat(2, 5px) repeat(2, 1fr) repeat(2, 5px);
    grid-template-rows: 0 auto 10px auto 10px 0;
    grid-gap: 1em;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .green__txt {
    grid-area: 2/1/3/7;
    padding: 0 0 2em;
  }
  .green__bg {
    grid-area: 3/2/6/5;
  }
  .green__img-left {
    grid-area: 4/1/5/4;
  }
  .green__img-right {
    grid-area: 4/4/5/7;
  }
  .green__img-left img, .green__img-right img {
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 42.5em) {
  .purple__img img {
    width: 100%;
  }

  .wrapper-blue {
    position: relative;
  }
  .wrapper-blue--top::after {
    left: 0;
  }
  .wrapper-blue--top .blue__content-right {
    padding-bottom: 1em;
  }
  .wrapper-blue--bottom::after {
    left: 36%;
  }

  .blue__content-left, .blue__content-right {
    width: 100%;
  }
  .blue__content-left {
    padding-right: 0;
  }
  .blue__content-right img {
    padding-left: 0;
  }
  .blue__img-bottom {
    padding-top: 0;
    margin-top: -2.5em;
  }

  .list {
    background-color: var(--color-blue);
    padding: 4em 2em 4em 0;
  }
}
.counter {
  font-size: 3em;
  font-family: "Open Sans Condensed";
  display: flex;
  justify-content: center;
}
.counter__minute, .counter__second {
  width: 2ch;
  background-color: var(--color-blue);
  padding: 0.2em 0.4em;
  color: #fff;
  border-bottom: calc(var(--counter-legend-size) * 1px) solid white;
  box-sizing: content-box;
  position: relative;
}
.counter__minute::after, .counter__second::after {
  position: absolute;
  bottom: calc(var(--counter-legend-size) * -1px);
  left: 0;
  right: 0;
  color: var(--color-blue);
  font-size: calc(var(--counter-legend-size) * 1px);
  height: calc(var(--counter-legend-size) * 1px);
  line-height: 1;
  text-align: center;
}
.counter__minute span::before,
.counter__minute span::after, .counter__second span::before,
.counter__second span::after {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: step-end;
}
.counter__minute::after {
  content: "min.";
}
.counter__second::after {
  content: "sek.";
}
.counter__separator {
  width: 1ch;
  color: var(--color-blue);
  padding: 0.2em 0;
  text-align: center;
}

.counter__second span::before {
  counter-reset: second-unit-of-tens 5;
  content: counter(second-unit-of-tens);
  animation-duration: 60s;
  animation-name: counter-second-unit-of-tens;
}
.counter__second span::after {
  counter-reset: second-unit 9;
  content: counter(second-unit);
  animation-duration: 10s;
  animation-name: counter-second-unit;
}

@keyframes counter-second-unit {
  10% {
    counter-increment: second-unit -1;
  }
  20% {
    counter-increment: second-unit -2;
  }
  30% {
    counter-increment: second-unit -3;
  }
  40% {
    counter-increment: second-unit -4;
  }
  50% {
    counter-increment: second-unit -5;
  }
  60% {
    counter-increment: second-unit -6;
  }
  70% {
    counter-increment: second-unit -7;
  }
  80% {
    counter-increment: second-unit -8;
  }
  90% {
    counter-increment: second-unit -9;
  }
  100% {
    counter-reset: second-unit 0;
  }
}
@keyframes counter-second-unit-of-tens {
  16.67% {
    counter-increment: second-unit-of-tens -1;
  }
  33.33% {
    counter-increment: second-unit-of-tens -2;
  }
  50.00% {
    counter-increment: second-unit-of-tens -3;
  }
  66.67% {
    counter-increment: second-unit-of-tens -4;
  }
  83.33% {
    counter-increment: second-unit-of-tens -5;
  }
  100% {
    counter-reset: second-unit-of-tens 0;
  }
}
.counter__minute span::before {
  counter-reset: minute-unit-of-tens 5;
  content: counter(minute-unit-of-tens);
  animation-duration: 3600s;
  animation-name: counter-minute-unit-of-tens;
}
.counter__minute span::after {
  counter-reset: minute-unit 9;
  content: counter(minute-unit);
  animation-duration: 600s;
  animation-name: counter-minute-unit;
}

@keyframes counter-minute-unit {
  10% {
    counter-increment: minute-unit -1;
  }
  20% {
    counter-increment: minute-unit -2;
  }
  30% {
    counter-increment: minute-unit -3;
  }
  40% {
    counter-increment: minute-unit -4;
  }
  50% {
    counter-increment: minute-unit -5;
  }
  60% {
    counter-increment: minute-unit -6;
  }
  70% {
    counter-increment: minute-unit -7;
  }
  80% {
    counter-increment: minute-unit -8;
  }
  90% {
    counter-increment: minute-unit -9;
  }
  100% {
    counter-reset: minute-unit 0;
  }
}
@keyframes counter-minute-unit-of-tens {
  16.67% {
    counter-increment: minute-unit-of-tens -1;
  }
  33.33% {
    counter-increment: minute-unit-of-tens -2;
  }
  50.00% {
    counter-increment: minute-unit-of-tens -3;
  }
  66.67% {
    counter-increment: minute-unit-of-tens -4;
  }
  83.33% {
    counter-increment: minute-unit-of-tens -5;
  }
  100% {
    counter-reset: minute-unit-of-tens 0;
  }
}
[data-animate] {
  opacity: 0;
}
[data-animate][class*=animate-] {
  opacity: 1;
}

.animate-split-word [data-letter] {
  display: inline-flex;
  opacity: 0;
  transform: rotateY(0deg);
  animation: data-letter 2s ease-in calc(var(--global-index) * .2s) forwards;
}
.animate-split-word [data-space=true] {
  width: 0.8ch;
}

@keyframes data-letter {
  0% {
    transform: rotateY(0deg);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: rotateY(1080deg);
    opacity: 1;
  }
}
.animate-nav-wrapper::after {
  width: 0;
  animation: nav-wrapper 1s linear 0s forwards;
}

@keyframes nav-wrapper {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% - 2em);
  }
}
.animate-nav__menu {
  position: relative;
}
.animate-nav__menu li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-purple);
  animation: nav__menu 1s ease 1s forwards;
}

@keyframes nav__menu {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
.animate-purple__bg {
  clip-path: polygon(0 0%, 100% 0%, 100% 0%, 0% 0%);
  animation: purple__bg 1.5s ease-in-out 2s forwards;
}
@media (max-width: 64em) {
  .animate-purple__bg {
    animation-delay: 0.2s;
  }
}

@keyframes purple__bg {
  0% {
    clip-path: polygon(0 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  100% {
    clip-path: polygon(0 59%, 100% 59%, 100% 100%, 0% 100%);
  }
}
.animate-purple__img {
  position: relative;
  clip-path: polygon(0 0%, 100% 0%, 100% 0%, 0% 0%);
  animation: purple__img 3s ease-in-out 2s forwards;
}
.animate-purple__img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 90px;
  width: 100%;
  height: calc(100% - 90px);
}
@media (max-width: 64em) {
  .animate-purple__img {
    animation-delay: 0.2s;
  }
}

@keyframes purple__img {
  0% {
    clip-path: polygon(0 0%, 100% 0%, 100% 0%, 0% 0%);
  }
  50% {
    clip-path: polygon(0 59%, 100% 59%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.animate-purple__txt {
  position: relative;
}
.animate-purple__txt::after {
  content: "";
  position: absolute;
  background-color: var(--color-purple);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  animation: purple__txt 1s linear 1s forwards;
}
@media (max-width: 64em) {
  .animate-purple__txt::after {
    animation-delay: 0.2s;
  }
}

@keyframes purple__txt {
  0% {
    clip-path: circle(140.9% at 100% 100%);
  }
  100% {
    clip-path: circle(0% at 100% 100%);
  }
}
.animate-label {
  position: relative;
}
.animate-label::after {
  content: "";
  position: absolute;
  background-color: var(--color-purple);
  left: 0;
  top: 0;
  right: 0;
  bottom: -1px;
  animation: label 1s linear 2s forwards;
}
@media (max-width: 64em) {
  .animate-label::after {
    animation-delay: 1.2s;
  }
}

@keyframes label {
  0% {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    background-color: #fff;
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
}
.animate-submit {
  position: relative;
}
.animate-submit::after {
  content: "";
  position: absolute;
  background-color: var(--color-purple);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  animation: submit 0.5s linear 2.5s forwards;
}
@media (max-width: 64em) {
  .animate-submit::after {
    animation-delay: 1.2s;
  }
}

@keyframes submit {
  0% {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
}
.animate-green__txt {
  position: relative;
}
.animate-green__txt::after {
  content: "";
  position: absolute;
  background-color: var(--color-gray);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  animation: green__txt 1s linear 0.5s forwards;
}
@media (max-width: 64em) {
  .animate-green__txt::after {
    animation-delay: 0.2s;
  }
}

@keyframes green__txt {
  0% {
    clip-path: circle(70.7% at 50% 50%);
  }
  100% {
    clip-path: circle(0% at 50% 50%);
  }
}
.animate-green__bg {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: green__bg 1.5s cubic-bezier(0.51, 0.26, 0.82, 0.53) 0.3s forwards;
}

@keyframes green__bg {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.green__img-left img,
.green__img-right img {
  visibility: visible;
  opacity: 0;
}

.animate-green__img-left {
  transform: translateY(-90px);
  visibility: hidden;
  animation: green__img-left 1s ease 2s forwards;
}
.animate-green__img-left img {
  opacity: 1;
  transition: opacity 1s linear 2s;
}

@keyframes green__img-left {
  0% {
    transform: translateY(-90px);
    visibility: visible;
  }
  100% {
    transform: translateY(0);
    visibility: visible;
  }
}
.animate-green__img-right {
  transform: translateX(-120px);
  visibility: hidden;
  animation: green__img-right 1s ease 2.3s forwards;
}
.animate-green__img-right img {
  opacity: 1;
  transition: opacity 1s linear 2.3s;
}

@keyframes green__img-right {
  0% {
    transform: translateX(-120px);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
    visibility: visible;
  }
}
.animate-blue__img-top {
  position: relative;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.4));
  transition: filter 0.3s linear 1.5s;
}
.animate-blue__img-top::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #fff 50%, var(--color-mustard) 50%);
  left: 2em;
  top: 0;
  right: 0;
  bottom: 0;
  animation: blue__img-top 1s linear 0.5s forwards;
}
@media (max-width: 42.5em) {
  .animate-blue__img-top::after {
    left: 0;
  }
}

@keyframes blue__img-top {
  0% {
    clip-path: circle(70.7% at 50% 50%);
  }
  100% {
    clip-path: circle(0% at 50% 50%);
  }
}
.list .list-item {
  transform: translateX(2em);
  opacity: 0;
}

.animate-list .list-item {
  transform: translateX(2em);
  animation: list 0.5s ease 0.1s forwards;
}
.animate-list .list-item:nth-child(2) {
  animation-delay: 0.6s;
}
.animate-list .list-item:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes list {
  0% {
    transform: translateX(2em);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-filter {
  animation: filter-blur 2s linear 0s forwards, filter-hue 15s linear 2s alternate infinite;
}

@keyframes filter-hue {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@keyframes filter-blur {
  0% {
    filter: blur(30px);
  }
  100% {
    filter: blur(0);
  }
}


/* ------------------------------------------------------------------------------ */
/* ------------------------------------------------------------ 6.0/00 - 21-08-22 */
/* css-counter postion background */
/* https://stackoverflow.com/questions/43514987/css-increasing-number-as-background-images-for-css */	
.no-class::before { 
	position:absolute;
  display:flex;
	/*top:var(--count-pos-top);*/
  /*right:var(--count-pos-right);*/
  bottom:var(--count-pos-bottom);
  left:var(--count-pos-left);
	justify-content:center;
  align-items:center;
  counter-increment:Element 1;
	content:counter(Element) '';
	font-size:var(--count-size); 
	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); /* 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 */	
/* ------------------------------------------------------------------------------ */