@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Tai+Le&display=swap");
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap'); */
@import url('https://fonts.googleapis.com/css?family=Khula:700');

body, div {
	margin: 0;
	padding: 0;
}
body {
	background: #8E2DE2;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	font-size: 16px;
}

#entete-de-page {
	padding: 5px;
	height: 125px;
	background: #8E2DE2;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	
	font-size: 32px;
	font-weight: bold;
	font-variant: small-caps;
	text-align: center;
}

.shadow-img {
  filter: drop-shadow(1px 7px 7px white)
}

.conteneur {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.box {
  border-radius: 75px;
  border-style: solid;
  overflow: hidden; 
  color: #2a044dea;
}

.liste {
  color: white;
  margin-left: 100px;
  font-family: 'Josefin Sans', sans-serif!important;
  font-weight: 900!important;
}

.border {
	background-color: #242424d8;
	border-radius: 5px;
	border: none;
	margin-left: -9px;
	margin-right: -9px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.img-border-1 {
	border-radius: 68% 32% 24% 76% / 61% 53% 47% 39% ;
	box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}

.img-border-2 {
	border-radius: 41% 59% 82% 18% / 35% 82% 18% 65%  ;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.img-border-3 {
	border-radius: 42% 58% 10% 90% / 50% 46% 54% 50% ;
	box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

#contenu {
	padding: 10px;
	background: #8E2DE2;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	
}

a {
	color: white;
	text-decoration: none!important;
	font-family: 'Quicksand', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Rubik', sans-serif!important;
	color: white!important;
  font-size: 45px!important;
}


.center {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

p {
	font-family: 'Josefin Sans', sans-serif!important;
	color: white!important;
	font-weight: 900;
	margin-left: 65px;
	margin-right: 65px;
  font-size: 25px;
}

.souligner {
	text-decoration: underline;
}

.black {
	color: #000000!important;
}

svg {
	font-family: "Noto Sans Tai Le", sans-serif;
	width: 100%; height: 100%;
}
svg text {
	animation: stroke 5s infinite alternate;
	stroke-width: 2;
	stroke: #000000;
	font-size: 64px;
}
@keyframes stroke {
	0%   {
		fill: rgba(255,255,255,0); stroke: rgba(0,0,0,1);
		stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
	}
	70%  {fill: rgba(255,255,255,0); stroke: rgba(0,0,0,1); }
	80%  {fill: rgba(255,255,255,0); stroke: rgba(0,0,0,1); stroke-width: 3; }
	100% {
		fill: rgba(255,255,255,1); stroke: rgba(0,0,0,0);
		stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
	}
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.navbar {
	padding: 15px;
	position: fixed!important;
	width: 100%;
	top: 0;
	z-index: 1000!important; /* Assure que la barre de navigation est au-dessus du contenu */
}

nav a {
	text-align: center;
    position: relative;
    font-size: 1.1em;
    color: black;
    text-decoration: none;
    padding: 6px 20px;
    transition: .5s;
	  font-weight: 900;
}
nav a:hover {
    color: #0ef;
}
nav a span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    border-bottom: 2px solid #0ef;
    border-radius: 15px;
    transform: scale(0) translateY(50px);
    opacity: 0;
    transition: .5s;
}
nav a:hover span {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.hidden {
  opacity:0;
}
.console-container {
 
  font-family:Khula;
  font-size:2em;
  text-align:center;
  color:white;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
}
.console-underscore {
   display:inline-block;
  position:relative;
  top:-0.14em;
  left:10px;
}

.footer-clean {
	padding:30px 0;
	background-color: rgba(22, 21, 21, 0.918);
	color: white;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: -10px;
  }
  
  .footer-clean h3 {
	margin-top:0;
	margin-bottom:12px;
	font-weight:bold;
	font-size:16px!important;
  }
  
  .footer-clean ul {
	padding:0;
	list-style:none;
	line-height:1.6;
	font-size:14px;
	margin-bottom:0;
  }
  
  .footer-clean ul a {
	color:inherit;
	text-decoration:none;
	opacity:0.8;
  }
  
  .footer-clean ul a:hover {
	opacity:1;
  }
  
  .footer-clean .item.social {
	text-align:right;
  }
  
  @media (max-width:767px) {
	.footer-clean .item {
	  text-align:center;
	  padding-bottom:20px;
	}
  }
  
  @media (max-width: 768px) {
	.footer-clean .item.social {
	  text-align:center;
	}
  }
  
  .footer-clean .item.social > a {
	font-size:24px;
	width:40px;
	height:40px;
	line-height:40px;
	display:inline-block;
	text-align:center;
	border-radius:50%;
	border:1px solid #ccc;
	margin-left:10px;
	margin-top:22px;
	color:inherit;
	opacity:0.75;
  }
  
  .footer-clean .item.social > a:hover {
	opacity:0.9;
  }
  
  @media (max-width:991px) {
	.footer-clean .item.social > a {
	  margin-top:40px;
	}
  }
  
  @media (max-width:767px) {
	.footer-clean .item.social > a {
	  margin-top:10px;
	}
  }
  
  .footer-clean .copyright {
	margin-top:14px;
	margin-bottom:0;
	font-size:13px;
	opacity:0.6;
	color: white;
  }



  @keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.background.overlay {
  pointer-events: none;
}

.background.overlay::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.background.overlay li {
  /* Vos styles pour les éléments li ici */
  pointer-events: auto; /* Permet aux événements de la souris de s'appliquer à cet élément */
}


.background li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 16s linear infinite;
}

.background li:nth-child(1) {
  left: 78%;
  width: 208px;
  height: 208px;
  bottom: -208px;
  animation-delay: 1s;
}

.background li:nth-child(2) {
  left: 62%;
  width: 146px;
  height: 146px;
  bottom: -146px;
  animation-delay: 3s;
}

.background li:nth-child(3) {
  left: 39%;
  width: 119px;
  height: 119px;
  bottom: -119px;
  animation-delay: 7s;
}

.background li:nth-child(4) {
  left: 37%;
  width: 114px;
  height: 114px;
  bottom: -114px;
  animation-delay: 15s;
}

.background li:nth-child(5) {
  left: 80%;
  width: 200px;
  height: 200px;
  bottom: -200px;
  animation-delay: 18s;
}

.background li:nth-child(6) {
  left: 66%;
  width: 147px;
  height: 147px;
  bottom: -147px;
  animation-delay: 23s;
}

.background li:nth-child(7) {
  left: 80%;
  width: 200px;
  height: 200px;
  bottom: -200px;
  animation-delay: 27s;
}

.background li:nth-child(8) {
  left: 66%;
  width: 147px;
  height: 147px;
  bottom: -147px;
  animation-delay: 34s;
}


/* Test */

.payhip-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Ajuste cette valeur si nécessaire */
}

.payhip-embed-page {
  width: 100%; /* S'assure que le bloc utilise la largeur disponible */
  max-width: 800px; /* Ajuste la largeur maximale en fonction de tes besoins */
}
