/* BANNER CARD */
.card {
  
  --color1: rgb(0, 231, 255);
  --color2: rgb(255, 0, 231);
  
  width: 30vh;
  height: 42vh;
  background-color: #211799;
  background-image: url(https://images.pokemontcg.io/swsh3/19_hires.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5% / 3.5%;
  box-shadow: -13px -13px 13px -15px var(--color1), 
    13px 13px 13px -15px var(--color2), 
    0 0 4px 2px rgba(255,255,255,0.5),
    0 35px 25px -15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  display: block;
  vertical-align: middle;
  margin: 20px 10px;
  animation: holoCard 15s ease infinite;
  transform-origin: center;
  z-index: 10;
  overflow: hidden;
  transform: translate3d(0,0,-1px); 
}

.card.charizard {
  --color1: rgb(255, 148, 54);
  --color2: rgb(255, 90, 144);
}
.card.pika {
  --color1: #ffdf35;
  --color2: #65f0ff;
  background-image: url(https://images.pokemontcg.io/swshp/SWSH063_hires.png);
}
.card.mew {
  --color1: #eb8bff;
  --color2: #7eeefa;
  background-image: url(https://images.pokemontcg.io/swsh3/69_hires.png);
}

.card > span {
  position: relative;
  top: 45%;
}

.card:before,
.card:after {
  content: "";
  opacity: .1;
  mix-blend-mode: screen;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-repeat: no-repeat;
}
.card:before {
  background-position: 50% 50%;
  background-size: 300% 300%;
  animation: holoGradient 15s ease infinite both;
  background-image: linear-gradient(
    115deg,
    transparent 0%,
    var(--color1) 30%,
    transparent 47.5%,
    transparent 52.5%,
    var(--color2) 70%,
    transparent 100%
  );
}
.card:after {
  opacity: 1;
  background-image: url("https://assets.codepen.io/13471/sparkles.gif");
  background-position: center;
  background-size: 160%;
  z-index: 2;
  animation: holoSparkle 15s ease infinite both;
  filter: brightness(1);
  transition: filter 0.5s ease;
}

.card.active {
  animation: none;
}

.card.active:before {
  opacity: 1;
  animation: none;
  transition: none;
  background-image: linear-gradient(
    115deg,
    transparent 30%,
    var(--color1) 48%,
    var(--color2) 53%,
    transparent 70%
  );
  filter: opacity(0.66);
  mix-blend-mode: screen;
}

.card.active:before,
.card.active:after {
  animation: none;  
}
.card.active:after {
  filter: brightness(2.5);
  mix-blend-mode: screen;
}

.demo .card:nth-of-type(1),
.demo .card:nth-of-type(2),
.demo .card:nth-of-type(3) {
  width: 124px;
  height: 170px;
  box-shadow: 0 0 1px 1px rgba(white,0.4), 0 25px 15px -10px rgba(0, 0, 0, 0.5);
  animation: none;
}

.demo .card:nth-of-type(1),
.demo .card:nth-of-type(2),
.demo .card:nth-of-type(3) {
  &:before, &:after {
    animation: none;
    opacity: 1;
  } 
}
.demo .card:nth-of-type(1) {
  &:before, &:after { display: none; }
}
.demo .card:nth-of-type(2) {
  background: none;
  &:before { display: none; }
}
.demo .card:nth-of-type(3) {
  background: none;
  &:before { background-position: center; }
  &:after { display: none; }
}

.operator {
  display: inline-block;
  vertical-align: middle;
  font-size: 45px;
}

@keyframes holoSparkle {
  0%, 5%, 100% { opacity: 0.2; background-position: 50% 50%; }
  33% { opacity: 1; background-position: 40% 40%; filter: brightness(2); }
  45% { opacity: 0.4; }
  66% { opacity: 1; background-position: 60% 60%; filter: brightness(2); }
}

@keyframes holoGradient {
  0%, 100% {
    opacity: 0.05;
    background-position: 50% 50%;
  }
  33% {
    background-position: 100% 100%;
    opacity: .66;
  }
  66% {
    background-position: 0% 0%;
    opacity: .66;
  }
}

@keyframes holoCard {
  0%, 100% {
    transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg);
  }
  33% {
    transform: rotateZ(-10deg) rotateX(20deg) rotateY(-12deg);
  }
  66% {
    transform: rotateZ(10deg) rotateX(-20deg) rotateY(12deg);
  }
}

h1 {
  display: block;
  margin: 30px 0 60px;
}
p {
  margin-top: 5px;
  font-weight: 200;
}
#app {
  position: relative;
}

.demo,
.cards { 
  display: flex;
  align-items: center;
  justify-content: flex-end;
  perspective: 2000px;
  position: relative;
  z-index: 1;
  transform: translate3d(0.1px, 0.1px, 0.1px );
  right: 10vh;
}

.cards .card {
  &:nth-child(2) {
    &, &:before, &:after {
      animation-delay: 0.2s;
    }
  }
  &:nth-child(3) {
    &, &:before, &:after {
      animation-delay: 0.4s;
    }
  }
}
/* END BANNER CARD */

.header {
    background-color: white !important;
}

@media (min-width: 1024px) {
    .nav__maxWidth {
        gap: 30px;
    }
}

@media (min-width: 720px) {
    .header.header--fixed .header__area {
        min-width: auto;
    }
}

@media (min-width: 1024px) {
    .nav, .nav__wrapper {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .header.header--fixed .nav__itemlvl1 {
        color: black;
    }
}

@media screen and (min-width: 1024px) {
  div#e676802c-ea3e-400e-9b0d-5557c9cac1e5 .wizi-txt.wizi-txt--withBg.wizi-txt--large {
    padding-right: 700px;
  }
}

@media screen and (min-width: 1024px) {
  div#\31 056ebb7-f92d-4aef-80e6-7761ae08c392 .wizi-txt.wizi-txt--withBg.wizi-txt--large {
    padding-left: 700px;
  }
}

div#f811fa99-9c39-4e3f-8436-657b9b80033b {
    margin-top: -300px !important;
    z-index: 3 !important;
}

@media screen and (max-width: 768px) {
  div#f811fa99-9c39-4e3f-8436-657b9b80033b {
    margin-top: -80px !important;
    z-index: 3 !important;
  }
}

@media screen and (max-width: 768px) {
  .card {
    width: 9vh;
    height: 12vh;
  }
}

.wiziblocks__item--fullpage {
    background: transparent !important;
}

@media screen and (max-width: 768px) {
  .demo, .cards {
    justify-content: center;
    right: 0vh;
  }
}

div#\31 9a4291c-6a19-4bc2-9ef3-d85d6532fac6 .wizi-content {
    border: 3px solid black;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (min-width: 720px) {
    div#\31 9a4291c-6a19-4bc2-9ef3-d85d6532fac6 .wizi-wrapper.wizi-img--two-title-text .wizi-content {
        width: calc(30% - -20px);
    }
}

div#\31 9a4291c-6a19-4bc2-9ef3-d85d6532fac6 .wizi-wrapper.wizi-img--two-title-text {
    justify-content: center;
    margin-top: 30px;
    gap: 40px;
}

.wizi-txt__background {
    border-radius: 20px;
    border: 3px solid black;
}

@media (min-width: 720px) {
    div#e676802c-ea3e-400e-9b0d-5557c9cac1e5 .wizi-wrapper--textOnImg.wizi-wrapper--small {
        min-height: 26.65vw;
    }
}

@media (min-width: 1024px) {
    .prod-list__title.h1 {
        font-size: 2.125rem;
    }
}

.powered {
    background: #05758B;
}

.footer__wrapper__left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer__wrapper__left__img {
    max-width: 300px !important;
}