@import url("class.css?v=43");
.preloader {
  transition: 0.3s;
}
.link-nav {
  width: 70%;
}
.top-nav {
  top: 25px;
  z-index: 10;
}
.profile {
  background-color: rgb(255, 255, 255, 0.05);
}
.container-back {
  transition: 0.5s;
}
.container-image {
  transition: 0.5s;
}
.bottom-nav {
  display: none;
  z-index: 10;
}
.container-back:hover .container-image {
  transform: scale(1.05);
}
#form-contact input,
#form-contact textarea {
  font-weight: 700;
  outline: none;
}
#pop-right {
  width: 350px;
  transition: 0.5s;
  opacity: 0;
  transform: translateX(100%);
}

.lang {
  z-index: 9;
  bottom: 200px;
}

.change-lang {
  opacity: 0;
  transition: 0.5s;
  transform: translateX(100%);
}

.bg-linear {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(33, 37, 41, 1) 91%
  );
}

@keyframes infinite-rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate-infinite {
  display: inline-block;
  /* Optionnel, selon le type d'élément */
  animation: infinite-rotation 2s linear infinite;
}
@media (max-width: 1199px) {
  .top-nav {
    display: none;
  }
  .bottom-nav {
    display: block;
  }
}
