
/* ********************** */
/* ********************** */

/* ***
Info CSS :
**z-index :
bgvideo -20
tsparticles -18
logokrp-video 10 
Ligne en bas 11
header 990
menu 997
cursor 998
page preloader 999
*** */

/* ********************** */
/* ********************** */
/*   Fonts   */
@font-face{
    font-family: "CuteFont";
    src: url(/assets/fonts/CuteFont-Regular.ttf)
}

@font-face {
  font-family: 'SpaceAge';
  src: url(/assets/fonts/spaceage.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Calibri';
  src: url(/assets/fonts/calibri.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Calibri';
  src: url(/assets/fonts/calibril.ttf) format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Calibri';
  src: url(/assets/fonts/calibrib.ttf) format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Calibri';
  src: url(/assets/fonts/calibriz.ttf) format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Calibri';
  src: url(/assets/fonts/calibrii.ttf) format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Calibri';
  src: url(/assets/fonts/calibrili.ttf) format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Pirulen';
  src: url(/assets/fonts/pirulenrg.otf) format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Conthrax';
  src: url(/assets/fonts/conthrax-sb.otf) format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://example.com/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
       local('MaterialIcons-Regular'),
       url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
       url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
       url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Page */
* {
    margin: 0;
    padding: 0;
}

.page-preloader {
    background-color: black;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
    -webkit-transition-property: opacity, visibility;
    -o-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Background */
/* background html */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: "Calibri", Verdana;
    background-color: black;
    cursor: none;
    user-select: none;
}

body, a, button {
  cursor: none;
}

.bloc {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* / Videobackground / */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -20;
}

/* *** */

/* / Media Queries pour mobile pour la bg video / */
@media (max-width: 600px) {
bg-video {
    object-fit: contain;
    opacity: 0.7;
  }
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Cursor */
.cursor {
    width: 25px;
    height: 25px;
    border: 1px solid white;
    border-radius: 50%;
    position: fixed;
    /* transition-duration: 200ms; */
    /* transition-timing-function: ease-out; */
    /* animation: cursorAnim .5s infinite alternate; */
    pointer-events: none;
    z-index: 998;
    will-change: transform;
}

.cursor::after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    border: 8px solid gray;
    border-radius: 50%;
    opacity: .5;
    top: -8px;
    left: -8px;
    animation: cursorAnim2 .5s infinite alternate;
}

.cursor::before {
    content: "";
    width: 6px;
    height: 6px;
    background: gold;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background 0.2s ease;
}

.cursor.link-hover::before {
    width: 7px;
    height: 7px;
    background: red;
}

@keyframes cursorAnim {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.7);
    }
}

@keyframes cursorAnim2 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(.4);
    }
}

@keyframes cursorAnim3 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(3);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.expand {
    animation: cursorAnim3 .5s forwards;
    border: 1px solid red;
}

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .cursor {
    width: 18px;
    height: 18px;
  }

  .cursor::after {
    width: 18px;
    height: 18px;
    border: 6px solid gray;
    top: -6px;
    left: -6px;
  }
}

/* Version smartphone */
@media (max-width: 600px) {
  .cursor {
    display: none;
  }
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Header + Logo */

header {
  position: fixed;
  top: 0;
  /* left: 20px; */
  width: 100%;
  /* padding: 30px 20px; */
  z-index: 990;
  display: flex;
  align-items: center;
}

/* LogoKRP - Taomme adaptée + Concerve les proportions */
.LogoKRP img {
  position: fixed;
  top: 2%;
  left: 3%;  
  height: 90px;
  width: auto;
  transition: transform 0.8s ease;
}

/* Effet au Survol */
.LogoKRP img:hover {
  transform: scale(1.2);
}

/* *** */

/* Responsive LogoKRP */
/* Plus petit sur tablette */
@media (max-width: 768px) {
  .LogoKRP img {
    height: 80px;
  }
}

/* encore plus petit sur smartphone */
@media (max-width: 480px) {
  .LogoKRP img {
    height: 70px;
  }
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Menu */
/* Bouton menu */
.menu-btn {
  display: flex;
  position: fixed;
  justify-items: center;
  align-content: center;
  color: white;
  top: 5%;
  right: 3%;
  text-align: center;
  cursor: pointer;
  font-size: 42px;
  transition: transform 1s ease;
  animation: pulseZoommenubtn 2s infinite ease-in-out;
}

.menu-btn span {
  display: inline-block;
  transition: transform 0.8s ease, color 1s ease;
}

.menu-btn span:hover {
  color: red;
  transform: scale(1.5);
}

@keyframes pulseZoommenubtn {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.close-btn {
  position: fixed;
  top: 5%;
  right: 3%;
  font-size: 32px;
  color: white;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.8s ease, color 0.4s ease;
}

.menu-overlay.active .close-btn {
  opacity: 1;
  pointer-events: auto;
}

.close-btn:hover {
  color: red;
  transform: scale(1.2);
}

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .menu-btn {
    top: 5%;
    right: 8%;
    font-size: 25px;
  }

  .close-btn {
    top: 5%;
    right: 8%;
    font-size: 30px;
  }
}

/* Version Smartphone */
@media (max-width: 600px) {
  .menu-btn {
    top: 5%;
    right: 8%;
    font-size: 22px;
  }

  .close-btn {
    top: 5%;
    right: 8%;
    font-size: 30px;
  }
}

/* *** */

/* Overlay menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.880);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Contenu du menu */
.menu-content {
  display: flex;
  width: 100%;
  height: 70%;
  flex-direction: column;
  font-family: 'Conthrax', Arial, sans-serif;
  font-size: 20px;
  gap: 20px;
  text-align: center;
  transition: transform 1s ease;
}

.menu-content a,
.menuservices-item a {
  color: white;
  font-size: 28px;
  text-decoration: none;
  transition: color 1s ease, transform 0.5s ease, opacity 0.5s ease;
}

.menu-content a:hover,
.menuservices-item a:hover {
  color: red;
  /* transition: 1s ease; */
  transform: scale(1.2);
}

.menu-content:hover a:not(:hover),
.menuservices-item:hover a:not(:hover) {
  opacity: 0.5;
  /* transition: opacity 0.5s ease; */
}

.menuservices-item a {
  transition: color 1s ease;
}

/* / Spécifique au lien Services / */
.menuservices-item > #services-link {
  display: inline-block;
  transition: color 1s ease, transform 1s ease;
}

.menuservices-item > #services-link:hover {
  color: red;
  transform: scale(1.2);
}

/* Sous-Menu Services */
.submenuservices {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0px;
  margin-bottom: 0px;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.8s ease;
}

/* Quand actif */
.menuservices-item.active .submenuservices {
  max-height: 200px;
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 1;
}

.submenuservices a {
  font-size: 18px;
  color: #acacac;
  text-decoration: none;
  transition: color 0.3s ease;
}

.submenuservices a:hover {
  color: red;
}

.menu-others {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.menu-others a {
  display: block;
  color: white;
  font-size: 15px;
  font-family: 'Calibri', sans-serif;
  font-style: italic;
  text-decoration: none;
  margin: 3px 0;
  transition: color 0.3s ease;
}

.menu-others a:hover {
  color: red;
}

/* ********************** */

/* ********************** */

/* ********************** */
/* / Conteneur global / */
.menushare-container {
  position: fixed;
  top: 10%;
  right: 2.75%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* / Bouton Share / */
.menushare-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.308);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulseZoommenubtnshare 2s infinite ease-in-out;
  position: relative;
  z-index: 2;
}

/* / Icône par défaut / */
.menushare-default-icon {
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* / Icône au survol (cachée par défaut) / */
.menushare-hover-icon {
  display: none;
  color: black;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* / Effet au survol du conteneur (bouton + menu) / */
.menushare-container:hover .menushare-btn {
  background-color: white;
  border-color: black;
  box-shadow: 0 0px 60px rgba(0, 0, 0, 0.76);
}

.menushare-container:hover .menushare-default-icon {
  display: none;
}

.menushare-container:hover .menushare-hover-icon {
  display: inline;
}

/* Animation */
@keyframes pulseZoommenubtnshare {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* / Menu caché par défaut / */
.menushare-menu {
  margin-top: -8px;
  width: 30px;
  background-color: rgb(219, 219, 219);
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* durée de la fermeture */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  pointer-events: none;
  z-index: 1;
}

/* / Affichage du menu quand on survole le conteneur / */
.menushare-container:hover .menushare-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* / Icônes des réseaux / */
.social-item {
  position: relative;
  color: black;
  font-size: 15px;
  margin: 8px 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  transition: transform 0.4s ease;
}

/* / Effet au survol : icône + slide / */
.social-item:hover {
  transform: scale(1.2);
}

.social-name {
  display: inline-block;
  opacity: 0;
  position: absolute;
  right: 100%;
  margin-right: 1px;
  font-size: 14px;
  font-family: 'Calibri', sans-serif;
  font-weight: normal;
  font-style: italic;
  color: white;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 12px;
  background-color: rgba(0,0,0,0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(30px);
}

.social-item:hover .social-name {
  opacity: 1;
  transform: translateX(0);
}

/* / Couleurs spécifiques / */
.linkedin:hover {  color: #007BB5;}

.instagram:hover { 
  color: #C32AA3;
}

.behance:hover { color: #1769ff; }
.pinterest:hover { color: #bd081c; }

/* / Couleurs spécifiques appliquées aussi au fond du texte / */
.linkedin:hover .social-name {  background-color: #007BB5;}

.instagram:hover .social-name {
  color: #FFFFFF;
  background: linear-gradient(45deg, #C32AA3, #7232BD, #4C5FD7, #F46F30, #FFDC7D);
}

.behance:hover .social-name {  background-color: #1769ff;}
.pinterest:hover .social-name {  background-color: #bd081c;}

/* *** */

/* Version tablette */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .menushare-container {
    right: 5%;
  }
}


/* Version Smartphone */
@media screen and (max-width: 767px) {
  .menushare-container {
    right: 6.8%;
  }
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Les points qui bougent automatiquement */
/* TS-Particles */
.tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -18;
}

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .tsparticles {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
}

/* Version smartphone */
@media (max-width: 600px) {
  .tsparticles {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none;
  }
}

/* ********************** */



/* ********************** */



/* ********************** */
/* Animation Logo KRP */
.logokrp-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
}

.logokrp-video {
  width: 250px;
  height: auto;
  z-index: 10;
}

  .logokrp-video {
    width: 200px;
  }

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .logokrp-container {
    margin-top: 100px;
  }

  .logokrp-video {
    width: 145px;
  }
}

/* Version smartphone */
@media (max-width: 600px) {
  .logokrp-container {
    margin-top: 110px;
  }

  .logokrp-video {
    width: 150px;
  }
}

/* ********************** */



/* ********************** */



/* ********************** */
/* Blocks 3D - Architecture - IT-Services */
.services-blocks3d {
  display: flex;
  justify-content: center;
  gap: 270px;
  margin-top: 110px;
}

.block1for2,
.block2for2 {
  position: relative;
  background: rgb(0, 0, 0);
  color: white;
  font-size: 13px;
  font-family: 'Conthrax', Arial, sans-serif;
  text-align: center;
  padding: 10px 35px;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid white;
  transform: perspective(600px) translateZ(20px);
  transition: all 0.5s ease;
  overflow: hidden;
  z-index: 1;
}

/* / Effet de remplissage intérieur / */
.block1for2::before,
.block2for2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #b8860b, #daa520);
  transform: scaleX(0) rotate(0deg);
  transform-origin: center;
  transition: transform 0.5s ease;
  z-index: -1;
}

/* / Bloc gauche : rotation -25° / */
.block2for2:hover::before {
  transform: scaleX(1);
}

/* / Bloc droit : rotation +25° / */
.block1for2:hover::before {
  transform: scaleX(1);
}

/* / Styles au survol / */
.block1for2:hover,
.block2for2:hover {
  color: black;
  font-size: 15px;
  border: 1px solid rgb(61, 61, 61);
  box-shadow: 0 0 15px gold, 0 0 30px orange;
  transform: perspective(600px) translateZ(40px) scale(1.05);
}

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .services-blocks3d {
    gap: 150px;
    margin-top: 110px;
  }

  .block1for2,
  .block2for2 {
    font-size: 12px;
    padding: 12px 35px;
  }
}

/* Version smartphone */
@media (max-width: 600px) {
  .services-blocks3d {
    gap: 60px;
    margin-top: 110px;
  }

  .block1for2,
  .block2for2 {
    font-size: 11px;
    padding: 10px 25px;
  }
}

/* ********************** */
/* ********************** */
/* / Trait sous les blocks / */
.lines-ssblocks3d {
  display: flex;
  justify-content: center;
  gap: 440px;
  margin-top: 40px;
}

.line1,
.line2 {
  width: 2px;
  height: 100px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

/* / Premier trait avec ombre dorée / */
.line1::before,
.line2::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 18px;
  background-color: goldenrod;
  top: 0;
  left: 0;
  animation: slideY 2s linear infinite alternate;
  box-shadow: 0 0 10px goldenrod;
}

/* Deuxième trait */
/* (décalé pour suivre le premier) */
/* avec ombre dorée */
.line1::after,
.line2::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 18px;
  background-color: goldenrod;
  top: 0;
  left: 0;
  animation: slideY 2s linear infinite alternate;
  animation-delay: 1s;
  box-shadow: 0 0 10px goldenrod;
}

/* / Animation haut ↔ bas / */
@keyframes slideY {
  0%   { top: -15px; }
  100% { top: 95px; }
}

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .lines-ssblocks3d {
    gap: 250px;
    margin-top: 50px;
  }

}

/* Version smartphone */
@media (max-width: 600px) {
  .lines-ssblocks3d {
    gap: 195px;
    margin-top: 50px;
  }

}

/* ********************** */
/* ********************** */
/* Les blocks contenant les textes qui se déroulent automatiquement */
.second-blocks {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(60px);
  /* / descente verticale / */
}

.blocks-ssblocks3D {
  display: flex;
  gap: 245px;
}

.block-liste1-left,
.block-liste2-right {
  width: 190px;
  height: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.726);
  border: 1px solid rgba(255, 255, 255, 0.671);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Conthrax', Arial, sans-serif;
  box-shadow: 0 0 5px gold, 0 0 20px orange;
  animation: pulseblocksdown 1s infinite alternate;
}

.cube-text {
  color: gold;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

/* / Effet de respiration (zoom léger) / */
@keyframes pulseblocksdown {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .blocks-ssblocks3D {
    gap: 150px;
  }

  .block-liste1-left,
  .block-liste2-right {
    width: 170px;
    height: 38px;
    font-size: 12px;
  }
}

/* Version smartphone */
@media (max-width: 600px) {
  .blocks-ssblocks3D {
    gap: 25px;
  }

  .block-liste1-left,
  .block-liste2-right {
    width: 170px;
    height: 35px;
    font-size: 11px;
  }
}

/* ********************** */



/* ********************** */



/* ********************** */
/* Social Icons */
.social-icons {
  display: flex;
  position: fixed;
  justify-items: center;
  align-content: center;
  color: rgb(175, 175, 175);
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  gap: 10px;
  align-items: center;
  min-width: 250px;
}

.social-icons a {
  color: rgb(175, 175, 175);
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.8s ease, color 1s ease;
}

.social-icons a:hover {
  color: red;
  transform: scale(1.5);
}

/* Lignes horizontales */
.social-icons::before,
.social-icons::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: rgb(175, 175, 175);
  margin: 0 10px;
  opacity: 1;
  border-radius: 5px;
}

/* Ligne gauche : blanc → transparent vers la gauche */
.social-icons::before {
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Ligne droite : blanc → transparent vers la droite */
.social-icons::after {
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* *** */

/* Version tablette */
@media (max-width: 1024px) {
  .social-icons {
    bottom: 40px;
    gap: 8px;
    min-width: 200px;
  }

  .social-icons a {
    font-size: 15px;
  }

  .social-icons::before,
  .social-icons::after {
    opacity: 1;
  }
}

/* Version smartphone */
@media (max-width: 600px) {
  .social-icons {
    bottom: 40px;
    gap: 7px;
    min-width: 150px;
  }

  .social-icons a {
    font-size: 13px;
  }

  .social-icons::before,
  .social-icons::after {
    height: 1px;
    opacity: 1;
    margin: 0 5px;
  }
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Ligne en bas de la page */
.bottom-line {
  position: fixed;
  bottom: 45px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff4f;
  z-index: 11;
}

/* ********************** */

/* ********************** */

/* ********************** */
/* Copyright */
.copyright {
  color: rgb(175, 175, 175);
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'Conthrax', Arial, sans-serif;
  font-size: 11px;
  line-height: 50px;
  font-weight: 500;
  pointer-events: initial;
  overflow: hidden;
}

/* Style du lien copyright */
.copyright .link {
  color: rgb(175, 175, 175);
  text-decoration: none;
  position: relative;
}

/* Soulignement animé */
.copyright .link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: red;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Effet au survol */
.copyright .link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Effet quand on enlève le curseur */
.copyright .link::after {
  transition: transform 0.8s ease;
}

/* ********************** */

/* ********************** */

/* ********************** */