
@font-face {
    font-family: ddoi;
    src: url("./assets/typos/ddoi3.woff2") format("woff2");
  }
  
  @font-face {
    font-family: Hnow-r;
    src: url("./assets/typos/HelveticaNowDisplay-Regular.ttf") format("woff2");
  }
  
  @font-face {
    font-family: Hnow-l;
    src: url("./assets/typos/HelveticaNowDisplay-Light.ttf") format("woff2");
  }
  
  @font-face {
    font-family: Hnow-li;
    src: url("./assets/typos/HelveticaNowDisplay-LightIta.ttf") format("woff2");
  }

  @font-face {
    font-family: Hnow-XLB;
    src: url("./assets/typos/HelveticaNowDisplay-ExtraBold.ttf") format("woff2");
  }

  @font-face {
    font-family: Hnow-B;
    src: url("./assets/typos/HelveticaNowDisplay-Bold.ttf") format("woff2");
  }

  @font-face {
    font-family: Hnow-mli;
    src: url("./assets/typos/HelveticaNowDisplay-MedIta.ttf") format("woff2");
  }

.brand {
font-size: 6rem !important; /* Taille du titre */
font-family: ddoi;
}

body {
overflow-x: hidden;  /* Empêche le défilement horizontal */
}

.btn-custom {
border-radius: 50%; /* Bords arrondis */
color: black !important; /* Texte en noir */
background-color: white !important; /* Fond blanc */
border: 1.2px solid black !important; /* Bordure visible et noire */
min-width: 130px !important;
min-width: 150px !important;
font-family: Hnow-r !important;
}

.btn-custom-2 {
border-radius: 50%; /* Bords arrondis */
color: rgb(255, 255, 255) !important; /* Texte en noir */
background-color: rgb(0, 0, 0) !important; /* Fond blanc */
border: 1.2px solid rgb(255, 255, 255) !important; /* Bordure visible et noire */
min-width: 130px !important;
min-width: 150px !important;
font-family: Hnow-r !important;
margin-left: 100px;
}

.btn-custom:hover {
background-color: #000000 !important; /* Léger changement de couleur au survol */
color: white !important;
}

.btn-custom-2:hover {
background-color: #868686 !important; /* Léger changement de couleur au survol */
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
overflow-x: hidden;  /* Empêche le défilement horizontal */
}

header {
text-align: center;
margin-bottom: 20px;
}

.row {
  margin-right: 0;
  margin-left: 0;
}

.col-6,
.col-5,
.col-1 {
  padding-right: 0;
  padding-left: 0;
}

.car-image {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  transform: translateX(22px); /* Décale l'image de 10 pixels vers la droite */
}

.separator1 {
  border-bottom: 2px solid #000;
  width: 100%;
}

h3{
  font-family: ddoi;
}

.hidden-image {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  transform: translateX(100%); /* Image positionnée hors de l'écran à droite */
  transition: transform 1.5s ease-in-out; /* Transition fluide */
}

.visible-image {
  transform: translateX(130px); /* Image revient à sa position normale */
}

.bg-gris{
  background-color: #F1F1F1;
}

.separator2 {
  border-bottom: 2px solid #000;
  width: 73%;
}

.hidden-text {
  opacity: 0;
  transform: translateY(75px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible-text {
  opacity: 1;
  transform: translateY(0);
}

.bandeau {
  font-family: ddoi;
  font-size: 18vh;
}

.img-bandeau {
  margin-top: 5%;
  margin-left: 40px;
}

.card-number {
  margin-top: -10px;
  font-size: 5rem;
  font-family: ddoi;
}
.card-title {
  font-size: 1.2rem;
  font-weight: bold;
}
.card-text {
  font-size: 1rem;
  color: #666;
}

.vertical-line {
  border-left: 1px solid black; /* Crée une ligne verticale de 2 pixels d'épaisseur */
  height: 57%;                /* Hauteur de la ligne */
  margin-left: 20px;
  margin-top: -5px;
}

.card {
  border-radius: 30px !important; /* Arrondir les bords de la carte */
  background: #f1f1f1c2 !important;
}

.card-body {
  height: 100%;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scroll 50s linear infinite;
  width: max-content; /* Taille en fonction du contenu pour éviter la coupure */
}

/* Animation continue */
@keyframes scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

.marquee {
  width: 100%;
  overflow: hidden;  /* Cache ce qui sort du cadre visible */
  box-sizing: border-box;
  white-space: nowrap;  /* Empêche le texte de se couper sur plusieurs lignes */
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 50s linear infinite;  /* Défilement continu */
  font-size: 20vh;
  font-family: ddoi;
}

.bandeau {
  font-family: ddoi;
}

@keyframes marquee {
  from {
      transform: translateX(0%);  /* Commence hors de l'écran à droite */
  }
  to {
      transform: translateX(-50%);  /* Termine hors de l'écran à gauche */
  }
}

.hidden-img {
  opacity: 1;
  transform: rotate(-45deg);
  transition: transform 1s ease-out;
  margin-top: 90px;
  margin-right: 15px;
}

.visible-img {
  opacity: 1;
  transform: rotate(0deg);
  margin-top: 90px;
  margin-right: 15px;
}

.separator3 {
  border-bottom: 1px solid #000;
  width: 100%;
  transform: translateY(-7px);
}

.separator4 {
  border-bottom: 1px solid #000;
  width: 60%;
  transform: translateY(-13px);
}

.sp-img {
  margin-left: 65%;
  margin-top: 34%;
}

.XLB {
  font-family: Hnow-XLB !important;
}

.light {
  font-family: Hnow-l;
}

.regu {
  font-family: Hnow-r;
}

.bold {
  font-family: Hnow-B;
}

.it {
  font-family: Hnow-li;
}

.mit {
  font-family: Hnow-mli;
}