@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");
@import url(https://fonts.googleapis.com/css?family=Open+Sans);

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: all 0.4s ease;
}
/* ===== Colours ===== */
:root {
  --body-color: #ffffff;
  --nav-color: #fff;
  --side-nav: #ffffff;
  --text-color: rgba(0, 0, 0, 0.945);
  --search-bar: #f2f2f2;
  --search-text: #010718;
}
body {
  height: 100vh;
  background-color: var(--body-color);
  display: grid;
  grid-template-areas:
    "haut"
    "mil"
    "bas";
  justify-items: center; 
  align-items: center;   
  max-width: 90%;
  margin: 0 auto;       
  text-align: center; 
}
body.dark {
  --body-color: #18191a;
  --nav-color: rgb(22, 22, 22);
  --side-nav: rgb(39, 38, 38);
  --text-color: #ccc;
  --search-bar: black;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  background-color: var(--nav-color);
  z-index: 100;
  grid-area: haut;
}
body.dark nav {
  border: 1px solid #393838;
}
nav .nav-bar {
  position: relative;
  height: 100%;
  max-width: 1000px;
  width: 100%;
  background-color: var(--nav-color);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav-bar .sidebarOpen {
  color: var(--text-color);
  font-size: 25px;
  padding: 5px;
  cursor: pointer;
  display: none;
}
nav .nav-bar .logo a {
  font-size: 35px;                 
  font-weight: 900;                
  color: white;                     
  text-decoration: none;
  text-transform: uppercase;        
  font-family: 'Fredoka One', cursive;
  letter-spacing: 2px;              
  text-shadow:
    -3px -3px 0 #000,
     3px -3px 0 #000,
    -3px  3px 0 #000,
     3px  3px 0 #000;
  
  /* petit effet de rebond au survol  */
  transition: transform 0.2s ease;
}

nav .nav-bar .logo a:hover {
  transform: scale(1.1) rotate(-2deg);
}
.menu .logo-toggle {
  display: none;
}
.nav-bar .nav-links {
  display: flex;
  align-items: center;
}
.nav-bar .nav-links li {
  margin: 0 5px;
  list-style: none;
}
.nav-links li a {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  padding: 10px;
}
.nav-links li a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--text-color);
  opacity: 0;
  transition: all 0.3s ease;
}
.nav-links li:hover a::before {
  opacity: 1;
}
.nav-bar .darkLight-searchBox {
  display: flex;
  align-items: center;
}
.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.dark-light i {
  position: absolute;
  color: var(--text-color);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dark-light i.sun {
  opacity: 0;
  pointer-events: none;
}
.dark-light.active i.sun {
  opacity: 1;
  pointer-events: auto;
}
.dark-light.active i.moon {
  opacity: 0;
  pointer-events: none;
}
.searchToggle i.cancel {
  opacity: 0;
  pointer-events: none;
}
.searchToggle.active i.cancel {
  opacity: 1;
  pointer-events: auto;
}
.searchToggle.active i.search {
  opacity: 0;
  pointer-events: none;
}
.searchBox {
  position: relative;
}
.searchBox .search-field {
  position: absolute;
  bottom: -85px;
  right: 5px;
  height: 50px;
  width: 300px;
  display: flex;
  align-items: center;
  background-color: var(--nav-color);
  padding: 3px;
  border-radius: 6px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.searchToggle.active ~ .search-field {
  bottom: -74px;
  opacity: 1;
  pointer-events: auto;
}
.search-field::before {
  content: "";
  position: absolute;
  right: 14px;
  top: -4px;
  height: 12px;
  width: 12px;
  background-color: var(--nav-color);
  transform: rotate(-45deg);
  z-index: -1;
}
.search-field input {
  height: 100%;
  width: 100%;
  padding: 0 45px 0 15px;
  outline: none;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--search-text);
  background-color: var(--search-bar);
}
body.dark .search-field input {
  color: var(--text-color);
}
.search-field i {
  position: absolute;
  color: var(--nav-color);
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}
body.dark .search-field i {
  color: var(--text-color);
}
.se {
  padding: 20px;
  display: grid;
  background-color: var(--nav-color);
  grid-template-areas: "hil hol";
}
.un {
  grid-area: hil;
  padding: 20px;
  display: inline;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.deux {
  grid-area: hol;
  display: flex;
  text-align: center;
}
.pimg {
  padding: 20px;
  background-color: #a03232;



}
.fono {
  padding: 10px;
border-radius:10px;
  background-color: #1e1e1e;
}

section {
  margin-top: 100px;
}

main {
  grid-area: mil;
  color: var(--text-color);
  margin-bottom: 200px;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--nav-color);
  color: var(--text-color);
  text-align: center;
  grid-area: bas;
}

.msgri {
  position: relative;
  border: var(--text-color) 2px solid;
  width: 70%;
  height: 600px;
  padding: 10px;
  border-radius: 8px;
  background-color: var(--nav-color);
}
.pro1 {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.prof {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prof span {
  margin: 5px;
  border-color: var(--text-color);
  border: 1px solid;
  border-radius: 8px;
  padding: 2px;
}

section {
  display: flex;
  justify-content: center;
}
.log {
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(
    to right,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet
  );
}
.pimg {
  padding: 0px;
  text-align: center;
  justify-content: center;
}

.bsen {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  justify-content: space-between;
  display: flex;
}
.sen {
  width: 100%;
  color: inherit;
  background-color: inherit;
  border-color: var(--text-color);
  border: 2px solid;
}
.send-button {
  background-color: var(--text-color);
  color: var(--search-bar);
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.send-button:hover {
  background-color: var(--text-color);
  transform: scale(1.05);
}

.send-button:active {
  background-color: var(--text-color);
  transform: scale(0.95);
}
.btns {
  padding: 10px;
  display: grid;
  grid-template-areas: "to ta";
  justify-content: center;
}
.android {
  grid-area: to;
}
.apple {
  grid-area: ta;
}
.download {
  margin: 10px;
  width: 200px;
  height: 75px;
  background: var(--text-color);
  float: left;
  border-radius: 5px;
  position: relative;
  color: var(--nav-color);
  cursor: pointer;
  border: 1px solid var(--text-color);
}

.download > .fa {
  color: var(--nav-color);
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

.df,
.dfn {
  position: absolute;
  left: 70px;
}

.df {
  top: 20px;
  font-size: 0.68em;
}

.dfn {
  top: 33px;
  font-size: 1.08em;
}

.download:hover {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}
.funderse {
  padding: 20px;
  display: inline;
  justify-content: center;
  text-align: center;
  align-items: center;
}
aside {
  padding-bottom: 50px;
}
@media (max-width: 990px) {
  nav .nav-bar .sidebarOpen {
    display: block;
  }
  .se {
    grid-template-areas:
      "hil"
      "hol";
  }
  .menu {
    position: fixed;
    height: 100%;
    width: 320px;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: var(--side-nav);
    z-index: 100;
    transition: all 0.4s ease;
  }
  .btns {
    grid-template-areas:
      "to"
      "ta";
  }
  nav.active .menu {
    left: -0%;
  }
  nav.active .nav-bar .navLogo a {
    opacity: 0;
    transition: all 0.3s ease;
  }
  .menu .logo-toggle {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo-toggle .siderbarClose {
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
  }
  .nav-bar .nav-links {
    flex-direction: column;
    padding-top: 30px;
  }
  .nav-links li a {
    display: block;
    margin-top: 20px;
  }
}

.bsen {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  justify-content: space-between;
  display: flex;
}
.sen {
  width: 100%;
  color: inherit;
  background-color: inherit;
  border-color: var(--text-color);
  border: 2px solid;
}
.send-button {
  background-color: var(--text-color);
  color: var(--search-bar);
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border: none;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.send-button:hover {
  background-color: var(--text-color);
  transform: scale(1.05);
}

.send-button:active {
  background-color: var(--text-color);
  transform: scale(0.95);
}

.message-form {
  background-color: var(--body-color);
  padding: 20px;

  color: var(--text-color);
}
.form-group {
  margin-bottom: 10px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
textarea {
  width: 100%;
  padding: 10px;
  color: var(--text-color);
  border: none;
  min-height: 100px;
  background-color: var(--nav-color);
}
button {
  background-color: #0292ff;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #ccc;
}
.alert {
  margin-top: 10px;
  padding: 15px;
}
.alert-success {
  font-size: 14px;
  color: #3c763d;
  display: none;
}
.alert-error {
  font-size: 14px;
  color: red;
  display: none;

}
.PP {
  display: flex;
  border: 2px solid var(--text-color);
}

/*  tu dois rechecké cette ligne   //////    */

.boxm {
  text-align: center;
  margin: 0% 20% 0% 20%;
  border-radius: 15px;
  padding: 20px;
}
.msg {
  grid-template-areas:
    "haut"
    "bas";
  padding: 10px;
}
.head {
  background: #833ab4;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: 2px;
  border-radius: 15px 15px 0px 0px;
}
.texta {
  grid-area: haut;
  height: 200px;
  width: 300px;
  border: none;
}
.bbb {
  grid-area: bas;
  margin: 15px;
  text-align: center;
}
.btt {
  padding: 8px;
  background-color: var(--text-color);
  color: var(--nav-color);
  border: none;
}
.action {
  text-align: center;
  padding: 50px;
}

.head {
  text-align: center;
  padding: 20px;
}

.btn {
  position: relative;
  padding: 1.5rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  min-width: 200px;
  z-index: 1;
}

.neon-pulse {
  background: #833ab4;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);

  box-shadow: 0 0 10px #fcb0452c;
  overflow: visible;
}

.neon-pulse::before,
.neon-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #fd1d1d;
  border-radius: inherit;
  animation: pulseOut 2s ease-out infinite;
  opacity: 0;
}

.neon-pulse::after {
  animation-delay: 1s;
}
#tel {
  margin-top: 100px;
}
@keyframes pulseOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
/*  == RESPONSIVE FIX - PAGE INDEX  == */
@media (max-width: 900px) {
  /* La section principale passe en colonne */
  .se {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px;
  }

  /* Bloc texte prend toute la largeur */
  .un {
    width: 100% !important;
    padding: 10px !important;
    text-align: center;
  }

  /* Le slider descend en dessous */
  .deux {
    width: 100% !important;
    margin-top: 20px;
    justify-content: center !important;
  }

  /* Images du slider adaptatives */
  .slider img {
    flex: 0 0 80% !important;
    max-width: 70% !important;
    height: 800% !important;
    border-radius: 12px;
  }

  /* Titre et textes adaptatifs */
  h1 {
    font-size: 1.4rem !important;
    line-height: 1.4;
  }
  h2 {
    font-size: 1.2rem !important;
  }
  h4, p {
    font-size: 1rem !important;
  }

  /* Boutons Play Store / App Store */
  .btns {
    flex-direction: column !important;
    align-items: center !important;
  }


  /* --- FIX VISIBILITÉ BOUTONS TÉLÉCHARGEMENT --- */

.download {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: #000; /* visible sur tous les thèmes */
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.download.apple {
  background-color: #000; /* Apple black */
  color: #fff;
  
}
.download.android {
  background-color: #000; /* Google Play black */
  color: #fff;

}

body.dark .download.apple {
  background-color: #fff; 
  color: black;
}
body.dark .download.android {
  background-color: #fff;
  color: black;
}

/* Effet au clic */
.download:active {
  transform: scale(0.98);
  opacity: 0.9;
}
}





/*  Forcer le slider à défiler horizontalement*/
/*  Empêche le fond rouge derrière */
.pimg.deux {
  background: transparent !important;
}

/* Garde le slider centré sous la section Download */
.se {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

/*  Bloc slider  bien centré */
.slider {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: scroll !important;
  overflow-y: hidden;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 690px; 
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  padding: 15px 0;
  justify-content: flex-start;
  align-items: center;
  background: transparent;
  scroll-behavior: smooth;
}

.slider img {
  flex: 0 0 calc(45% - 20px); /* 2 images visibles côte à côte */
  max-width: 280px;           
  height: auto;               
  border-radius: 14px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider img:hover {
  transform: scale(1.02); /* petit zoom  */
}

@media (max-width: 900px) {
  .slider img {
    flex: 0 0 calc(70% - 20px);
    max-width: 230px;
  }
}

@media (max-width: 600px) {
  .slider img {
    flex: 0 0 90%;
    max-width: 200px;
  }
}


/* ===== Nouveau style sliderStatic ===== */
.sliderStatic {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 700px;
  margin: 30px auto;
}

.sliderStatic img {
  width: 45%;
  height: auto;
  max-width: 300px;
  border-radius: 12px;
  object-fit: contain;
  transition: opacity 0.6s ease-in-out;
}

/*FIX MOBILE DISPLAY*/
@media (max-width: 768px) {

  /* Centrer la section principale */
  .se {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 15px;
    gap: 20px;
  }

  /* Image / mockup du téléphone */
  .slider img,
  .pimg img {
    width: 90% !important;        /* occupe 90% de la largeur écran */
    max-width: 320px !important;  /* limite sur les petits écrans */
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 18px;
    object-fit: contain;
  }

  /* Titre principal */
  h1 {
    font-size: 1.3rem !important;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  /* Paragraphes et textes */
  h4, p {
    font-size: 1rem !important;
    line-height: 1.5;
    padding: 0 10px;
  }

  /* Boutons App Store / Play Store */
  .btns {
    flex-direction: column !important;
    gap: 15px;
    margin-top: 20px;
  }

  /* Footer lisible */
  footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 40px;
    padding-bottom: 20px;
  }
}


/* === PAGE POLITIQUE & CONDITIONS == */

body.policy-page {
  display: block !important;
  grid-template-areas: none !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  height: auto !important;
  min-height: 100vh;
  background-color: var(--body-color);
}

/* Neutralise le "section { display:flex }"  */
body.policy-page section {
  display: block !important;
  justify-content: initial !important;
  align-items: initial !important;
  margin-top: 40px !important;
  width: 100%;
}


body.policy-page .policy-container {
  display: block !important;
  max-width: 900px;
  margin: 120px auto 80px auto;
  padding: 0 25px;
  line-height: 1.8;
  font-size: 16px;
  color: var(--text-color);
}


body.policy-page h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

body.policy-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
}


body.policy-page p {
  text-align: justify;
  margin-bottom: 16px;
}

body.policy-page ul {
  margin: 10px 0 25px 40px;
}

body.policy-page li {
  margin-bottom: 8px;
}
body.policy-page strong { font-weight: 600; }

body.policy-page hr {
  border: none;
  height: 1px;
  background: rgba(100, 100, 100, 0.3);
  margin: 40px 0;
}

body.policy-page .center {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 40px;
}


/* PAGE MESSAGE ANONYME (ghostMsg.ejs) */


/* Conteneur principal */
.boxm {
  width: 90%;
  max-width: 600px;
  height: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background: var(--body-color, #fff);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header */
.head {
  text-align: center;
  margin-bottom: 10px;
}

.head h4 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff4d4d, #ff9d4d);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.head p {
  font-size: 1rem;
  opacity: 0.85;
}

/* Formulaire */
.msg {
  width: 100%;
}

.msg textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(150, 150, 150, 0.3);
  font-size: 1rem;
  background: var(--input-bg, #f8f8f8);
  color: inherit;
  outline: none;
  resize: none;
  transition: border 0.3s;
}

.msg textarea:focus {
  border-color: #777;
}

/* Bouton envoyer */
.bbb {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.btt {
  width: 40%;
  max-width: 300px;
  background: black;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.btt:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}


/* Bouton "Reçois tes propres messages" */
.action {
  margin-top: 10px;
  text-align: center;
  width: 100%;
}

.btn {
  border: none;
  width: 90%;
  max-width: 320px;
  padding: 14px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(45deg, #ff0066, #ffcc00);
  color: #fff;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  text-align: center;
  margin-top: auto;
  padding: 10px 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* RESPONSIVE DESIGN*/
@media (max-width: 768px) {
  .boxm {
    width: 90%;
    height: auto;
    margin: 10px , auto;
    padding: 15px 10px;
  }

  .head h4 {
    font-size: 1.4rem;
  }

  .msg textarea {
    font-size: 0.95rem;
    min-height: 100px;
  }

  .btt,
  .btn {
    width: 40%;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .head h4 {
    font-size: 1.2rem;
  }

  .head p {
    font-size: 0.9rem;
  }

  .btt,
  .btn {
    font-size: 0.9rem;
  }
}



.zero{
margin-bottom:10px;
}
.zero{width:100%;height:min(50vh,400px);background:linear-gradient(45deg,#FD8D32,#E1306C,#C13584);display:flex;justify-content:center;align-items:center;gap:clamp(20px,5vw,80px);padding:clamp(10px,2vw,20px)}
.zero [class^="p"]{width:clamp(100px,15vw,150px);height:clamp(100px,15vw,150px);background:rgba(255,255,255,.1);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.2);border-radius:clamp(10px,2vw,20px);overflow:hidden;transition:.3s}
.zero .p1{transform:rotate(clamp(-20deg,-15deg,-10deg))translateY(clamp(-50px,-8vh,-20px))}
.zero .p2{transform:rotate(clamp(10deg,15deg,20deg))translateY(clamp(20px,8vh,50px))}
.zero [class^="p"] img{width:100%;height:100%;object-fit:cover}
.zero [class^="p"]:hover{transform:scale(1.05)rotate(0);z-index:1}
@media(max-width:768px){
.zero{height:min(45vh,350px)}
.zero .p1{transform:rotate(-12deg)translateY(clamp(-30px,-5vh,-15px))}
.zero .p2{transform:rotate(12deg)translateY(clamp(15px,5vh,30px))}
}
@media(max-width:480px){
.zero{height:min(40vh,300px)}
.zero .p1{transform:rotate(-8deg)translateY(clamp(-25px,-4vh,-12px))}
.zero .p2{transform:rotate(8deg)translateY(clamp(12px,4vh,25px))}
}
@media(max-width:320px){
.zero{height:min(60vh,400px)}
.zero .p1{transform:rotate(-5deg)translateY(-15px)}
.zero .p2{transform:rotate(5deg)translateY(15px)}
}
@media(orientation:landscape)and(max-height:500px){
.zero{height:70vh}
.zero [class^="p"]{width:clamp(80px,12vw,120px);height:clamp(80px,12vw,120px)}
.zero .p1{transform:rotate(-10deg)translateY(-20px)}
.zero .p2{transform:rotate(10deg)translateY(20px)}
}
