/*@font-face {
  font-family: "EuclidCircularA-Bold";
  src: url("./../fonts/EuclidCircularA-Bold.otf") format("truetype"); /* Chemin vers le fichier de police */
/* font-weight: bold;
  font-style: normal;
}

body,
html {
  font-family: "EuclidCircularA-Bold";
}

/* p {
  font-size: 1rem;
} */

@font-face {
  font-family: 'SuisseBPIntl-Bold';
src: url(./../fonts/SuisseBPIntl-Bold.ttf) ;
}

@font-face {
  font-family: 'SuisseBPIntl-Medium';
src: url(./../fonts/SuisseBPIntl-Medium.otf) ;
}

@font-face {
  font-family: 'SuisseBPIntl-Regular';
src: url(./../fonts/SuisseBPIntl-Regular.otf) ;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

header {
  position: fixed;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  right: 25px;
  padding-bottom: 25px;
  padding-top: 25px;
  z-index: 22;
}

main {
  width: 100%;
  display: flex;
  gap: 50px;
  flex-direction: column;
  height: min-content;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

main {
  padding-bottom: 30px;
}

a {
  text-decoration: none;
}

#button-toggle {
  width: 120px;
  height: 50px;
  background-color: rgb(255, 255, 255);
  border-radius: 40px;
  padding: 10px;
  cursor: pointer;
  overflow: hidden;
}

.toggle {
  width: 50px;
  height: 50px;
  background-color: black;
  border-radius: 50%; /* Pour donner à la bulle une forme circulaire */
  position: relative;
  left: 0;
  transition: left 0.5s; /* Durée de l'animation */
}

#button-toggle.on .toggle {
  left: 70px; /* Déplacement de la bulle lorsque le bouton est activé */
}
