*{margin: 0; padding: 0;}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    font-family: "Poppins", sans-serif; font-size: 16px;
}
a{text-decoration: none;}
img{max-width: 100%;}
.wrapper{ max-width: 1170px; margin: 0 auto;}
.logo {
    text-align: center;
    margin-bottom: 20px;

} 
.uppercase{text-transform: uppercase;}
.title{
    text-align: center;
}
strong{font-weight: 800;}
.title h2{
    text-align: center;
    color: #003883;
    font-size: 37px;
}
.mt{margin-top:45px}
.title span{
    color: #D20073;    font-weight: 800;
}
.font18{font-size: 18px;}
.title p{
    color: #003883;
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0;
}
.code h3{
    font-size: 30px;
    color: #009DE0;
    text-align: center;
}
.code button{
    border: 2px dashed #009DE0;
    padding: 20px;
    background: transparent;
    color: #D20073;
    font-size: 37px;
    font-weight: 600;
    margin: 30px 0 20px 0;
}
.text-center{text-align: center;}
.ebtn_startted{color: #ffffff !important;
    border-width: 0px !important;
    border-color: rgba(255, 255, 255, 0);
    border-radius: 50px;
    font-size: 18px;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif !important;
    background-image: linear-gradient(90deg, #d60173 0%, #fb0c77 99%); display: inline-block; padding:20px 35px;
    box-shadow: 0px 2px 18px 0px rgba(211, 0, 219, 0.38);transition: all 300ms ease 0ms; text-decoration: none; margin-top: 35px;
}
.ebtn_startted:hover {
    box-shadow: 0px 7px 25px 4px rgba(211, 0, 219, 0.38);
    transform: translateX(0px) translateY(-3px) !important;
}
.wrapper-x{ padding: 30px 15px 50px 15px;     border-top: 15px solid #009de0;}
.wrapper-y{background-color: #083570; padding: 50px 15px; color: #fff;}
.wrapper-y p{margin-bottom: 12px;  font-size: 18px; line-height: 24px;  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif !important;}
.wrapper-y h3{margin-bottom: 30px; font-size: 22px;}
.border-none{border:none; padding: 50px 15px;}
.text-left{text-align: left; margin-top: 35px;   color: #0c71c3 !important; margin-top: 70px; }

.text-left a{ color: #2ea3f2;}
/* Styles pour le footer */
footer {
    background-color: #003883; /* Fond bleu foncé */
    padding: 20px 15px;
    margin-top: 50px;
    text-align: center;
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

footer nav ul li a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #D20073;
}
/* Header général */
.site-header {
  background-color: #ffffff; /* Fond blanc */
  border-bottom: 1px solid #eaeaea; /* Bordure discrète en bas */
  padding: 10px 15px;
}

.header-container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

/* Logo à gauche */
.header-logo img {
  max-height: 50px; /* Ajustez la taille selon vos besoins */
}

/* Menu centré en version bureau */
.header-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.rivax-header-nav {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.rivax-header-nav li a {
  color: #003883; /* Couleur du texte */
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.rivax-header-nav li a:hover {
  color: #D20073;
}

/* Bouton hamburger (masqué en bureau) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #003883;
  transition: all 0.3s ease;
}

/* Responsive - mobile */
@media screen and (max-width: 768px) {
  /* Le menu devient statique et masqué par défaut */
  .header-menu {
    position: static;
    transform: none;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff; /* Fond blanc */
    padding: 15px 0;
    border-top: 1px solid #eaeaea;
    margin-top: 10px;
  }
  .header-menu.active {
    display: flex;
  }
  .rivax-header-nav {
    flex-direction: column;
    gap: 15px;
  }
  /* Afficher le hamburger sur mobile */
  .hamburger {
    display: flex;
  }
}
