@media (min-width: 1024px) {
    .nav__maxWidth {
        gap: 2vw;
    }
}
/* BANNER CARD */
@media screen and (max-width: 768px) {
    .card {
        width: 12vh !important;
        height: 17vh !important;
    }
}
.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%;
  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: center;
  perspective: 2000px;
  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;
    }
  }
}

@media (min-width: 720px) {
    div#\33 cc45163-07fa-445b-87dd-bc94970f52ce .wizi-imgtxt__left {
        width: 40% !important;
        margin-right: -8vw;
        z-index: 3 !important;
    }
}
@media (min-width: 720px) {
    div#\33 cc45163-07fa-445b-87dd-bc94970f52ce .wizi-imgtxt__right {
        width: 40% !important;
        margin-left: -8vw;
        z-index: 3 !important;
    }
}
div#\33 cc45163-07fa-445b-87dd-bc94970f52ce .wizi-imgtxt__center {
    background-color: #EC9F29;
    border-radius: 10px;
}
/* END BANNER CARD */
div#\34 0b56300-118d-4b1e-9ec6-e8741dbfdaaa .wizi-txt__background {
    border-radius: 20px;
}
div#b15925f2-1d07-4cf8-81ac-e318d82fc110 .wizi-imgtxt--textRightTextLeft .wizi-imgtxt__right--small:before {
    padding-top: 90%;
}
@media screen and (min-width: 1024px) {
  #b15925f2-1d07-4cf8-81ac-e318d82fc110 .wizi-imgtxt__right.wizi-imgtxt__right--small {
    margin-top: -20vw !important;
  }
}
@media screen and (max-width: 767.98px) {
  div#\33 cc45163-07fa-445b-87dd-bc94970f52ce .wizi-imgtxt__center {
    padding: 20px !important;
  }
}
@media screen and (max-width: 767.98px) {
  div#\33 cc45163-07fa-445b-87dd-bc94970f52ce .wizi-imgtxt__left.wizi-imgtxt__left--small {
    margin-bottom: -6vw !important;
    z-index: 3;
  }
}
@media screen and (max-width: 767.98px) {
  div#\33 cc45163-07fa-445b-87dd-bc94970f52ce .wizi-imgtxt__right.wizi-imgtxt__right--small {
    margin-top: -8vw !important;
  }
}
div#\37 1c9d081-b6d4-436c-abd5-792197dbf121 .wizi-txt.wizi-txt--large img {
    padding: 0px 32rem !important;
}
.prod-list__right__title {
    font-size: 1.4rem !important;
}
div#af2c49cf-bc5f-4e02-8dbc-16623ceae378 .wiziBtn__wrapper {
    justify-content: flex-start;
}
@media (min-width: 1024px) {
    .header.header--fixed .nav {
        left: 35%;
    }
}
div#\37 1c9d081-b6d4-436c-abd5-792197dbf121 p {
    margin-bottom: 8vw !important;
}
div#\30 392d282-19c3-4d60-81f9-f61f05d77bdd .wizi-imgtxt--textLeftTextRight .wizi-imgtxt__left--small:before {
    padding-top: 62%;
}
div#af2c49cf-bc5f-4e02-8dbc-16623ceae378 .wizi-imgtxt--textLeftTextRight .wizi-imgtxt__left--small:before {
    padding-top: 0%;
}
div#af2c49cf-bc5f-4e02-8dbc-16623ceae378 {
    z-index: 3;
    padding: 80px 0px !important;
}
div#af2c49cf-bc5f-4e02-8dbc-16623ceae378 .wizi-imgtxt__left.wizi-imgtxt__left--small {
    margin-top: -8vw;
}
.wiziblocks__item--fullpage {
    background: transparent;
}
div#\30 392d282-19c3-4d60-81f9-f61f05d77bdd {
    background-color: black;
}
@media screen and (min-width: 1025px) {
  .header__h1 {
    display: none !important;
  }
}
h1.we-align-center {
    padding-top: 8rem !important;
}
div#\30 392d282-19c3-4d60-81f9-f61f05d77bdd .wiziBtn__wrapper {
    justify-content: flex-start;
}
@media (min-width: 1024px) {
    .nav, .nav__wrapper {
        justify-content: flex-start;
    }
}
.wiziblocks__item__maxWidth {
    background-color: transparent;
}
div#\36 91088ab-8c51-44f2-9b1f-97aab26f6381 {
    display: none;
}
div#\37 1c9d081-b6d4-436c-abd5-792197dbf121 .wizi-txt.wizi-txt--large img {
    padding: 0px 34vw;
}
div#f0b85288-f193-46bf-8d8a-30ea13ca0476 {
    z-index: 3;
}
div#f0b85288-f193-46bf-8d8a-30ea13ca0476 .prod__price {
    background-color: white;
    border-radius: 10px;
}
div#f0b85288-f193-46bf-8d8a-30ea13ca0476 p.prod__name {
    background-color: white;
    border-radius: 10px;
}
.footer {
    background-image: url(https://media.cdnws.com/_i/418200/38/2058/38/crea-card-game-banniere.jpeg);
    background-size: cover;
}
.footer__wrapper {
    text-align: center;
}
.footer__wrapper__left__primary__ul__li__link {
    color: white;
}
.footer__wrapper__right {
    display: none;
}
.footer__wrapper__left__primary {
    justify-items: center;
}
ul.footer__wrapper__left__primary__ul {
    background-color: #EC9F29;
    width: 40%;
    border-radius: 20px;
    padding-top: 12px;
}
.powered__p {
    color: white;
}
@media (min-width: 1024px) {
    .footer__wrapper__left__primary__ul__li__link:focus, .footer__wrapper__left__primary__ul__li__link:hover {
        color: white;
    }
}
.wizi-txt img[alt="CARD&GAME"] {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(255, 100, 0, 0.8)) 
          drop-shadow(0 0 40px rgba(0, 150, 255, 0.6));
  transition: all 0.4s ease-in-out;
}
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 100, 0, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 150, 255, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 150, 50, 1)) 
            drop-shadow(0 0 60px rgba(100, 200, 255, 0.8));
  }
}
.wizi-txt img[alt="CARD&GAME"] {
  animation: glowPulse 3s ease-in-out infinite;
}
div#b15925f2-1d07-4cf8-81ac-e318d82fc110 {
    background-image: url(https://media.cdnws.com/_i/418200/69/812/69/crea-card-game-console-jeux-videosbg.jpeg);
    background-size: cover;
    padding: 205px 60px;
    background-position: center bottom;
    padding-bottom: 0px;
}
@media (max-width: 719px) {
  div#b15925f2-1d07-4cf8-81ac-e318d82fc110 {
    background-image: url(https://media.cdnws.com/_i/418200/69/812/69/crea-card-game-console-jeux-videosbg.jpeg);
    background-size: cover;
    background-position: center bottom;
    padding: 10px;
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 1025px) {
  div#\34 0b56300-118d-4b1e-9ec6-e8741dbfdaaa img.wizi-img__item {
    object-fit: contain !important;
  }
}
div#\34 0b56300-118d-4b1e-9ec6-e8741dbfdaaa picture {
    z-index: 3 !important;
}
div#\34 0b56300-118d-4b1e-9ec6-e8741dbfdaaa .wizi-txt.wizi-txt--withBg.wizi-txt--large {
    padding: 0px 8rem;
}
div#\34 0b56300-118d-4b1e-9ec6-e8741dbfdaaa .wizi-txt__background {
    padding: 30px 180px;
}
@media (min-width: 1024px) {
    .header.header--fixed .nav__itemlvl1 {
        font-weight: 800;
        text-transform: uppercase;
    }
}
@media only screen and (max-width: 768px) {
  div#\37 1c9d081-b6d4-436c-abd5-792197dbf121 .wizi-txt.wizi-txt--large img {
    padding: 0px 10vw !important;
  }

  div#\37 1c9d081-b6d4-436c-abd5-792197dbf121 p {
    margin-bottom: 24vw !important;
  }

  div#\34 0b56300-118d-4b1e-9ec6-e8741dbfdaaa .wizi-txt__background {
    padding: 30px !important;
  }

  div#\34 0b56300-118d-4b1e-9ec6-e8741dbfdaaa .wizi-txt.wizi-txt--withBg.wizi-txt--large {
    padding: 3rem !important;
  }
}
@media only screen and (max-width: 768px) {
  ul.footer__wrapper__left__primary__ul {
    background-color: #EC9F29 !important;
    width: 100% !important;
    border-radius: 20px !important;
    padding-top: 12px !important;
  }
}

div#b15925f2-1d07-4cf8-81ac-e318d82fc110 .wiziBtn__wrapper {
    justify-content: flex-start;
}
div#af2c49cf-bc5f-4e02-8dbc-16623ceae378 .wizi-imgtxt.wizi-imgtxt--half.wizi-imgtxt--textLeftTextRight {
    flex-direction: row-reverse;
}
/* SCROLLING */
@media (max-width: 2100px) and (min-width: 1200px) {
      div#\30 392d282-19c3-4d60-81f9-f61f05d77bdd .wizi-imgtxt__left {
        animation: slide1 linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
}

@media (max-width: 2100px) and (min-width: 1200px) {
      div#b15925f2-1d07-4cf8-81ac-e318d82fc110 .wizi-imgtxt__right {
        animation: slide2 linear;
        animation-timeline: view();
        animation-range-start: cover 0%;
        animation-range-end: contain 30%;
    }
}

 @keyframes slide1 {
  from{
  transform: translateX(-100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}

 @keyframes slide2 {
  from{
  transform: translateX(100%);
  opacity:0;
  }
  to {
  transform: translateX(0%);
  opacity:1;
  }
}
/* Logo au-dessus du H1 principal de la page d'accueil */
div#\37 1c9d081-b6d4-436c-abd5-792197dbf121 h1::before {
  content: "";
  display: block;
  width: 300px;          /* taille du logo */
  height: 300px;         /* idem */
  margin: 0 auto 12px auto;
  background-image: url("https://media.cdnws.com/_i/418200/36/1240/36/logo-valider.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

