@charset "UTF-8";
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  color: #fff;
  background: #004d95;
}

::-moz-selection {
  color: #fff;
  background: #004d95;
}

body {
  background-color: #306ff6;
  font-family: Arial, Courier, monospace;
  line-height: 1.5;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
@media (prefers-color-scheme: dark) {
  body {
    /* couleur fond */
    background-color: #6E7DAB;
    color: #333;
  }
}
@media (prefers-color-scheme: light) {
  body {
    /* couleur fond */
    background-color: #6E7DAB;
    color: #333;
  }
}
body .contenu {
  flex: 1 0 auto;
}

html {
  scroll-behavior: smooth;
}

.avant-block {
  padding-top: 120px;
}
@media screen and (max-width: 800px) {
  .avant-block {
    padding-top: 50px;
  }
}

.template-section {
  width: 100%;
}
@media (prefers-color-scheme: dark) {
  .template-section {
    color: #D1E3DD;
  }
}
@media (prefers-color-scheme: light) {
  .template-section {
    color: #D1E3DD;
  }
}
.template-section .template-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.template-section .template-container .template {
  padding: 30px 0 0 0;
}
.template-section .template-container .text {
  padding: 20px 10%;
  text-align: justify;
  opacity: 0;
  animation: fadein linear forwards;
  animation-timeline: view();
  animation-range: 100px 300px;
}
@keyframes fadein {
  to {
    opacity: 1;
  }
}
.template-section .template-container .text a {
  text-decoration: underline;
  color: #333;
  transition: 0.3s ease-out;
}
@media (prefers-color-scheme: dark) {
  .template-section .template-container .text a {
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  .template-section .template-container .text a {
    color: #c0c0c0;
  }
}
.template-section .template-container .text a:hover {
  color: rgb(134, 92, 217);
}
.template-section .template-container .animbegintext {
  opacity: 0;
  transform: translateY(10%);
  animation: 1s titleanimate 1s linear forwards;
}
@keyframes titleanimate {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0.8;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* .template-section .template-container .affiche-text-dessous {
  clear: right;
} */
.template-section .template-container .affiche h3 {
  padding: 35px 10% 2px 10%;
  scale: 0.8;
  opacity: 0;
  animation: fadein linear forwards;
  animation-timeline: view();
  animation-range: 250px 500px;
  margin-bottom: 20px;
}
@keyframes fadein {
  to {
    scale: 1;
    opacity: 1;
  }
}
.template-section .template-container .affiche img {
  position: relative;
  width: 50%;
  animation: fadein linear forwards;
  animation-timeline: view();
  animation-range: 250px 500px;
}
@keyframes fadein {
  to {
    scale: 1;
    opacity: 1;
  }
}
.template-section .template-container h3,
.template-section .template-container h4 {
  padding: 0 0 0 15px;
  font-weight: bold;
}
.template-section .template-container h3 {
  opacity: 0;
  animation: fadein linear forwards;
  animation-timeline: view();
  animation-range: 100px 300px;
}
@keyframes fadein {
  to {
    opacity: 1;
  }
}
.template-section .template-container h4 {
  padding: 0 0 0 30px;
}
.template-section .template-container h1 {
  opacity: 0;
  transform: translateY(30%);
  animation: 0.8s titleanimate 0.4s linear forwards;
}
@keyframes titleanimate {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.template-section .template-container img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.template-section .template-container button {
  text-decoration: node;
  margin-bottom: 50px;
}
.template-section .template-container button:hover { /*pour le hover*/
  text-decoration: underline;
}
.template-section .template-container ul {
  text-align: left;
  margin-left: 15%;
}
.template-section .template-container ul li {
  padding-bottom: 10px;
}
.template-section .template-container dl {
  text-align: left;
  margin-left: 10%;
  margin-right: 10%;
}
.template-section .template-container dl dt {
  font-weight: bold;
  text-decoration: underline;
}
.template-section .template-container dl dt::before {
  content: "• ";
  text-decoration: none;
}
.template-section .template-container dl dd {
  margin-left: 3%;
  padding-top: 5px;
  padding-bottom: 15px;
  text-align: justify;
}

footer {
  flex-shrink: 0;
  border-top: 1px dashed rgb(0, 0, 0);
  width: 100%;
  background: #ffffff;
  color: #333;
}
@media (prefers-color-scheme: dark) {
  footer {
    background-color: #333;
    color: #c0c0c0;
    border-top: 1px dashed #fff;
  }
}
@media (prefers-color-scheme: light) {
  footer {
    background-color: #333;
    color: #c0c0c0;
    border-top: 1px dashed #fff;
  }
}
footer .contenu-footer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 16px;
  padding: 50px 0 10px;
}
@media screen and (max-width: 800px) {
  footer .contenu-footer {
    flex-wrap: wrap;
    padding: 15px 0 5px;
  }
}
footer .contenu-footer .bloc {
  width: 25%;
  margin: 0 30px;
}
@media screen and (max-width: 800px) {
  footer .contenu-footer .bloc {
    width: 80%;
    margin: 30px 30px;
  }
}
footer .contenu-footer .bloc:nth-child(1), footer .contenu-footer .bloc:nth-child(2) {
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  footer .contenu-footer .bloc:nth-child(1), footer .contenu-footer .bloc:nth-child(2) {
    margin-bottom: 10px;
  }
}
footer .contenu-footer .bloc h3 {
  font-size: 22px;
  padding-bottom: 20px;
  user-select: none; /* Propriété standard */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
}
@media screen and (max-width: 800px) {
  footer .contenu-footer .bloc h3 {
    padding-bottom: 5px;
  }
}
footer .contenu-footer .bloc ul {
  list-style-type: none;
}
footer .contenu-footer .bloc ul li {
  margin: 10px 0;
}
footer .contenu-footer .bloc ul li span {
  font-weight: bold;
}
footer .contenu-footer .bloc ul li a {
  text-decoration: underline;
  color: #333;
  transition: 0.3s ease-out;
}
@media (prefers-color-scheme: dark) {
  footer .contenu-footer .bloc ul li a {
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  footer .contenu-footer .bloc ul li a {
    color: #c0c0c0;
  }
}
footer .contenu-footer .bloc ul li a:hover {
  color: rgb(134, 92, 217);
}

.infinit-part {
  width: 100%;
  padding: 8px 0px;
  position: fixed;
  z-index: 1;
  background: #ffffff;
  border-bottom: 1px solid rgb(0, 0, 0);
}
.infinit-part:hover .container .txt {
  animation-play-state: paused;
}
@media (prefers-color-scheme: dark) {
  .infinit-part {
    background-color: #333;
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  .infinit-part {
    background-color: #333;
    color: #c0c0c0;
  }
}
@media screen and (max-width: 800px) {
  .infinit-part {
    display: none;
  }
}
.infinit-part .container {
  position: relative;
  margin: auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .infinit-part .container .container {
    position: relative;
    z-index: 1;
  }
}
.infinit-part .container::before {
  left: 0;
  background: linear-gradient(to left, transparent, #ffffff);
}
@media (prefers-color-scheme: dark) {
  .infinit-part .container::before {
    background: linear-gradient(to left, transparent, #333);
  }
}
@media (prefers-color-scheme: light) {
  .infinit-part .container::before {
    background: linear-gradient(to left, transparent, #333);
  }
}
.infinit-part .container::after {
  right: 0;
  background: linear-gradient(to right, transparent, #ffffff);
}
@media (prefers-color-scheme: dark) {
  .infinit-part .container::after {
    background: linear-gradient(to right, transparent, #333);
  }
}
@media (prefers-color-scheme: light) {
  .infinit-part .container::after {
    background: linear-gradient(to right, transparent, #333);
  }
}
.infinit-part .container::before, .infinit-part .container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 1;
}
.infinit-part .container .txt {
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  transform: translateX(100%); /* Initial position hors de l'écran */
  user-select: none; /* Propriété standard */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.infinit-part .container .txt .it {
  font-style: italic;
  font-weight: bold;
}

.main-section {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;

}

.main-section img {
  background: rgb(255, 255, 255);
  position: relative;
  z-index: -2;
  padding-top: 0;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
@media (prefers-color-scheme: dark) {
  .main-section img {
    filter: brightness(85%);
  }
}
@media (prefers-color-scheme: light) {
  .main-section img {
    filter: brightness(85%);
  }
}
@media screen and (max-width: 800px) {
  .main-section img {
    animation: none;
    padding-top: 50px;
  }
}
@keyframes headerimageanimation {
  25% {
    opacity: 1;
  }
  85%, 100% {
    opacity: 0;
    scale: 2;
  }
}
.main-section .home-timer {
  position: absolute;
  top: 45%;
  width: auto;
  height: 160px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  /* border-radius: 10px; */
  /* background: rgb(255, 255, 255); */
  /* background: linear-gradient(170deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 32%, rgba(255, 255, 255, 0.2) 69%, rgba(255, 255, 255, 0) 100%); */
  /* border-top: 1px solid rgba(213, 213, 213, 0.8117647059);
  border-left: 1px solid rgba(213, 213, 213, 0.8117647059); */
  /* box-shadow: 0 2 px 6px rgba(0, 0, 0, 0.32); */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  animation: fadeout linear;
  animation-timeline: view();
  animation-range: exit -150%;
  box-shadow: 25px 22px 42px rgba(0, 0, 0, 0.62);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(5.9px);
  -webkit-backdrop-filter: blur(5.9px);
  border: 1px solid rgba(255, 255, 255, 0.47);

}
@keyframes fadeout {
  to {
    opacity: 0;
  }
}
@media screen and (max-width: 800px) {
  .main-section .home-timer {
    display: none;
  }
}
@media screen and (max-width: 1300px) and (min-height: 1000px) {
  .main-section .home-timer {
    display: none;
  }
}
.main-section .home-timer h2 {
  font-family: Montserrat, sans-serif;
  padding: 0px 25px;
  margin: 5px 0;
  font-size: clamp(50px, 25vw, 50px);
  font-weight: bold;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(160deg, rgb(4, 7, 80) 0%, rgb(17, 46, 103) 50%, rgb(27, 63, 135) 100%);
  color: transparent;
  user-select: none; /* Propriété standard */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
}

.main-section #scrool-bottom {
  position: absolute;
  bottom: 17%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  background: #fff;
  animation: bounceUpDown 3s infinite ease-out;
}
@keyframes bounceUpDown {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px); /* Déplacement vers le bas */
  }
  100% {
    transform: translateY(-10px);
  }
}
@media (prefers-color-scheme: dark) {
  .main-section #scrool-bottom {
    filter: brightness(70%);
  }
}
@media (prefers-color-scheme: light) {
  .main-section #scrool-bottom {
    filter: brightness(70%);
  }
}
@media screen and (max-width: 1100px) {
  .main-section #scrool-bottom {
    display: none;
  }
}
@media screen and (min-height: 800px) {
  .main-section #scrool-bottom {
    display: none;
  }
}
.main-section #scrool-bottom a {
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.main-section #scrool-bottom a img {
  z-index: 0;
  background: transparent;
  transform: translateY(-100px);
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.quatre-cent-quatre {
  padding-top: 50px;
}
.quatre-cent-quatre h1 {
  font-size: 50px;
  user-select: none; /* Propriété standard */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
}
@media screen and (max-width: 800px) {
  .quatre-cent-quatre h1 {
    padding-top: 25px;
    font-size: 35px;
  }
}
.quatre-cent-quatre p {
  font-size: 25px;
}
@media screen and (max-width: 800px) {
  .quatre-cent-quatre p {
    font-size: 22px;
  }
}
.quatre-cent-quatre a {
  text-decoration: underline;
  color: #333;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.3s ease-out;
}
@media (prefers-color-scheme: dark) {
  .quatre-cent-quatre a {
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  .quatre-cent-quatre a {
    color: #c0c0c0;
  }
}
.quatre-cent-quatre a:hover {
  color: rgb(0, 0, 0);
}

.to-top-btn {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.166);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: all 0.6s;
}
.to-top-btn img {
  transform: rotate(180deg);
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.to-top-btn.active {
  opacity: 1;
  cursor: pointer;
}

.chronometre {
  display: flex;
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.166);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.chronometre .corner-round {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(170, 170, 170, 0.699);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate(10px, -10px);
  cursor: pointer;
}
.chronometre h4 {
  padding: 5px;
  user-select: none; /* Propriété standard */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
}
@media screen and (min-width: 800px) {
  .chronometre h4 {
    padding: 10px;
    font-size: large;
  }
}
@media (prefers-color-scheme: dark) {
  .chronometre h4 {
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  .chronometre h4 {
    color: #c0c0c0;
  }
}

.google {
  display: flex;
  justify-content: center;
}
.google .google-map {
  display: block;
  width: 100%;
  border: 3px solid #c0c0c0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  background: #c0c0c0;
  opacity: 0;
  transform: translateY(10%);
  animation: 1s titleanimate 1.5s linear forwards;
}
@keyframes titleanimate {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0.8;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.article-container-intervenant {
  width: 90%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  backdrop-filter: brightness(80%);
  opacity: 0;
  transform: translateY(10%);
  animation: 1s titleanimate 1s linear forwards;
}
@keyframes titleanimate {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0.8;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.article-container-intervenant:hover img {
  -webkit-filter: grayscale(0%); /* Pour les navigateurs Chrome, Safari, Opera */
  filter: grayscale(0%); /* Firefox */
}
.article-container-intervenant h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.article-container-intervenant p {
  text-align: justify;
}
.article-container-intervenant img {
  object-fit: cover;
  border-radius: 50%;
  float: left;
  shape-outside: margin-box;
  margin: 0 20px 5px 0;
  transition: 0.3s ease-out;
  -webkit-filter: grayscale(100%); /* Pour les navigateurs Chrome, Safari, Opera */
  filter: grayscale(100%); /* Firefox */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media screen and (max-width: 800px) {
  .article-container-intervenant img {
    -webkit-filter: grayscale(0%); /* Pour les navigateurs Chrome, Safari, Opera */
    filter: grayscale(0%); /* Firefox */
  }
}
.article-container-intervenant::after {
  content: "";
  display: block;
  clear: both;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.image-container img {
  max-width: 23%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
}

.image-container-tik img {
  max-width: 30%;
}

.image-container-histoire img {
  max-width: 45%;
}

.image-container-IBM img {
  max-width: 26%;
}

.image-container-rail img {
  max-width: 35%;
}

.logos {
  border-top: 1px dashed rgb(0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
  background: #ffffff;
  color: #333;
  width: 100vw;
}
@media (prefers-color-scheme: dark) {
  .logos {
    background-color: #333;
    color: #c0c0c0;
    border-top: 1px dashed #fff;
  }
}
@media (prefers-color-scheme: light) {
  .logos {
    background-color: #333;
    color: #c0c0c0;
    border-top: 1px dashed #fff;
  }
}
.logos:hover .logo-slide-container .logos-slide {
  animation-play-state: paused;
}
.logos .logo-slide-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 10px 10px 30px 10px;
  overflow: hidden;
}
.logos .logo-slide-container::before {
  left: 0;
  background: linear-gradient(to left, transparent, #ffffff);
}
@media (prefers-color-scheme: dark) {
  .logos .logo-slide-container::before {
    background: linear-gradient(to left, transparent, #333);
  }
}
@media (prefers-color-scheme: light) {
  .logos .logo-slide-container::before {
    background: linear-gradient(to left, transparent, #333);
  }
}
.logos .logo-slide-container::after {
  right: 0;
  background: linear-gradient(to right, transparent, #ffffff);
}
@media (prefers-color-scheme: dark) {
  .logos .logo-slide-container::after {
    background: linear-gradient(to right, transparent, #333);
  }
}
@media (prefers-color-scheme: light) {
  .logos .logo-slide-container::after {
    background: linear-gradient(to right, transparent, #333);
  }
}
.logos .logo-slide-container::before, .logos .logo-slide-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 1;
}
.logos .logo-slide-container .logo-h3 {
  font-size: 22px;
  margin: 10px 0 30px 30px;
  position: relative;
  z-index: 2;
  user-select: none; /* Propriété standard */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
  -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
}
.logos .logo-slide-container .logos-slide {
  display: inline-block;
  animation: 49s slide infinite linear;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos .logo-slide-container .logos-slide img {
  backdrop-filter: brightness(95%);
  height: 100px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  margin: 0 20px;
  padding: 10px;
  transition: 0.3s ease-out;
  -webkit-filter: grayscale(100%); /* Pour les navigateurs Chrome, Safari, Opera */
  filter: grayscale(100%); /* Firefox */
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media screen and (max-width: 800px) {
  .logos .logo-slide-container .logos-slide img {
    -webkit-filter: grayscale(0%); /* Pour les navigateurs Chrome, Safari, Opera */
    filter: grayscale(0%); /* Firefox */
  }
}
.logos .logo-slide-container .logos-slide img:hover {
  transform: scale(1.05);
  cursor: pointer;
  -webkit-filter: grayscale(0%); /* Pour les navigateurs Chrome, Safari, Opera */
  filter: grayscale(0%); /* Firefox */
}

.lens-container {
  display: inline-block;
  height: 50px;
  width: 50px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);
  transition: 0.3s ease-out;
  border: 2px solid #e1306c;
  padding: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}
.lens-container:hover {
  width: 200px;
}
@media screen and (max-width: 800px) {
  .lens-container:hover {
    width: 50px;
  }
}
.lens-container .button-lens {
  display: flex; /* Utilisation de flex pour aligner verticalement et horizontalement */
}
.lens-container .button-lens .icon-lens {
  display: inline-block;
  height: 50px;
  transform: translateX(-2px) translateY(-2px);
  width: 50px;
  padding: 3px 4px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  transition: 0.3s ease-out;
  background: #e1306c;
  border-radius: 3px solid #e1306c;
}
.lens-container .button-lens .icon-lens i {
  font-size: 43px;
  transition: 0.3s ease-out;
  color: #fff;
}
.lens-container .button-lens .insta {
  color: #e1306c;
  margin-left: 10px;
  line-height: 50px; /* Ajout de la hauteur de ligne pour centrer verticalement */
  text-decoration: underline;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: larger;
}

@media screen and (min-width: 800px) {
  #insta {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    transition: none;
  }
}
#insta:hover {
  width: 50px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  background: #306ff6;
  color: #6E7DAB;
  transition: opacity 0.4s ease-out;
}
@media (prefers-color-scheme: dark) {
  .loader {
    background: #6E7DAB;
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  .loader {
    background: #6E7DAB;
    color: #c0c0c0;
  }
}

.loader.fondu-out {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

#navbar {
  position: fixed;
  z-index: 4;
  top: 40px;
  width: 100%;
  padding: 25px 35px 55px 35px;
  transition: 0.6s;
  background: rgba(1, 18, 35, 0.568627451);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);

  /* Dégradé plus fluide */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 60%,  /* Garde l'opacité plus longtemps */
    rgba(0, 0, 0, 0.8) 75%, 
    rgba(0, 0, 0, 0.4) 90%, 
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0.8) 75%, 
    rgba(0, 0, 0, 0.4) 90%, 
    rgba(0, 0, 0, 0) 100%
  );
}




@media (prefers-color-scheme: dark) {
  #navbar {
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  #navbar {
    color: #c0c0c0;
  }
}
@media screen and (max-width: 800px) {
  #navbar {
    padding: 7px 15px;
    position: fixed;
    top: 0;
  }
}
#navbar.sticky {
  padding: 15px 35px;
  background: rgba(1, 18, 35, 0.568627451);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.32);

  /* Suppression du dégradé */
  -webkit-mask-image: none;
  mask-image: none;
}

#navbar .first-container {
  margin: auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
}
#navbar .first-container .nav-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 20px;
}
@media screen and (max-width: 800px) {
  #navbar .first-container .nav-icon {
    order: 2;
    margin: auto;
  }
}
#navbar .first-container .nav-icon img {
  width: 40px;
}
#navbar .first-container .nav-icon span {
  font-family: sans-serif;
  transform: translateY(3px);
  font-size: 30px;
  margin-left: 10px;
  font-weight: 600;
  color: #c0c0c0;
}
@media screen and (max-width: 800px) {
  #navbar .first-container .nav-icon span {
    font-size: 22px;
  }
}
@media screen and (max-width: 800px) {
  #navbar .first-container .main-navlinks {
    order: 1;
  }
}
#navbar .first-container .main-navlinks .hamburger {
  display: none;
}
@media screen and (max-width: 800px) {
  #navbar .first-container .main-navlinks .hamburger {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: none;
    display: flex;
    background: transparent;
    align-items: center;
    position: relative;
  }
}
@media screen and (max-width: 800px) {
  #navbar .first-container .main-navlinks .hamburger.open span:nth-child(1) {
    transform: translate(0) rotate(135deg);
  }
}
@media screen and (max-width: 800px) {
  #navbar .first-container .main-navlinks .hamburger.open span:nth-child(2) {
    opacity: 0;
    transition: opacity 0s ease-out;
  }
}
@media screen and (max-width: 800px) {
  #navbar .first-container .main-navlinks .hamburger.open span:nth-child(3) {
    transform: translate(0) rotate(-135deg);
  }
}
@media screen and (max-width: 800px) {
  #navbar .first-container .main-navlinks .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.3s 0.15s;
    background-color: #c0c0c0;
    color: #c0c0c0;
  }
  #navbar .first-container .main-navlinks .hamburger span:nth-child(1) {
    transform: translateY(7px);
  }
  #navbar .first-container .main-navlinks .hamburger span:nth-child(3) {
    transform: translateY(-7px);
  }
  #navbar .first-container .main-navlinks .hamburger span:nth-child(1), #navbar .first-container .main-navlinks .hamburger span:nth-child(3) {
    transition: transform 0.3s ease-out;
  }
}
#navbar .first-container .navlinks-container {
  margin-left: auto;
}
@media screen and (max-width: 800px) {
  #navbar .first-container .navlinks-container.open {
    transform: translate(0%);
  }
}
@media screen and (max-width: 800px) {
  #navbar .first-container .navlinks-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    background: rgba(255, 255, 255, 0.8588235294);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    top: 100%;
    left: 0;
    height: 100vh;
    padding: 50px;
    box-shadow: 4px 0px 6px -2px rgba(0, 0, 0, 0.1);
    transform: translate(-101%);
    max-width: 70%;
  }
}
@media screen and (max-width: 800px) and (prefers-color-scheme: light) {
  #navbar .first-container .navlinks-container {
    /* background-color: rgba(255, 255, 255, 0.8588235294);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333; */
    background-color: rgba(192, 192, 192, 0.8901960784);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media screen and (max-width: 800px) and (prefers-color-scheme: dark) {
  #navbar .first-container .navlinks-container {
    background-color: rgba(192, 192, 192, 0.8901960784);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
@media screen and (max-width: 800px) and (prefers-color-scheme: light) {
  #navbar .first-container .navlinks-container {
    background-color: rgba(192, 192, 192, 0.8901960784);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
#navbar .first-container .navlinks-container a {
  margin: 0 10px;
  font-size: 25px;
  font-weight: 500;
  transform: translateY(4px);
  text-decoration: none;
  color: #c0c0c0;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 800px) {
  #navbar .first-container .navlinks-container a {
    font-size: 25px;
    margin: 20px 0;
  }
}
@media screen and (max-width: 800px) and (prefers-color-scheme: light) {
  #navbar .first-container .navlinks-container a {
    color: #333;
  }
}
@media screen and (max-width: 800px) and (prefers-color-scheme: dark) {
  #navbar .first-container .navlinks-container a {
    color: #333;
  }
}
#navbar .first-container .navlinks-container a:nth-child(1) {
  color: #fff;
  font-weight: 600;
}
@media (prefers-color-scheme: dark) {
  #navbar .first-container .navlinks-container a:nth-child(1) {
    color: #c0c0c0;
  }
}
@media (prefers-color-scheme: light) {
  #navbar .first-container .navlinks-container a:nth-child(1) {
    color: #c0c0c0;
  }
}
@media screen and (max-width: 800px) {
  #navbar .first-container .navlinks-container a:nth-child(1) {
    color: #333;
  }
}
#navbar .first-container .navlinks-container a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 2px;
  transform: scale(0);
  transform-origin: left;
  background: #c0c0c0;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 800px) {
  #navbar .first-container .navlinks-container a::after {
    background: rgba(30, 18, 51, 0.6666666667);
  }
}
#navbar .first-container .navlinks-container a:hover::after {
  transform: scaleX(1);
}

.text_centre{
  text-align: center;
}


/*# sourceMappingURL=style.css.map */
