@import url('https://fonts.googleapis.com/css2?family=Luxurious+Script&family=Megrim&family=Milonga&family=Nunito&display=swap');


/*SETUP*/

*,
::before,
::after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  box-sizing: border-box;
}

:root {
  --gold: #e1bd75;
  --light-shadow: #5b4722;
  --dark-shadow: #32230a;
  --h2-background-color: black;
  --h2-text-color: hsl(0, 0%, 100%);
}

body {
  background-color: #333;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-family: 'Nunito Sans';
  overscroll-behavior: none;
}

.fa-chevron-up {
  font-size: 45px;
  display: block;
  position: fixed;
  bottom: 15px;
  right: 30px;
  cursor: pointer;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  z-index: 20;
  /* text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); */

}

/* ***************************** HEADER ********************************* */

header {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  text-align: center;
}


/* ***************************** SECTION ******************************** */

section {
  position: relative;
  height: 100vh;
  width: 100vw;
}

#first {
  height: 150vh;
}


/* ****************************** HAMBURGER *********************************** */


.link-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  display: flex;
  top: 0px;
  right: 35px;
  cursor: pointer;
  transition: transform  0.3s ease-in;
  z-index: 10;
}

.link-icon {
  position: relative;
  width: 44px;
  height: 34px;
  margin: auto;
  display: flex;
  align-items: center;
  transform: rotate(0);
  transition: 1s;
}

.link-wrapper:hover .link-icon {
  transform: rotate(270deg);
}

.link-icon span {
  position: absolute;
  display: block;
  height: 5px;
  background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  border: 1px solid #a2682a;
  border-radius: 6px;
  box-shadow: 0 0 5px, 0 0 10px;
  transition: 0.3s;
  transition-delay: 0.15s;
}

.link-icon span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
}

.link-wrapper:hover .link-icon span:nth-child(1) {
  width: 50%;
  transform: rotate(-33deg) translateX(-8px) translateY(2px);
}

.link-icon span:nth-child(2) {
  width: 100%;
  transform: translateX(0);
  z-index: -1;
}

.link-wrapper:hover .link-icon span:nth-child(2) {
  width: 101%;
  transform: translateX(-7px);
}

.link-icon span:nth-child(3) {
  bottom: 0;
  left: 0;
  transform: translateX(0) translateY(0);
  width: 100%;
}

.link-wrapper:hover .link-icon span:nth-child(3) {
  width: 50%;
  transform: rotate(33deg) translateX(-8px) translateY(-2px);
}

.href-link {
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 11;
}



/* ************************* HEADER H1 / H2 ***************************** */

h1 {
  position: absolute;
  background: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  filter: drop-shadow(0px 40px 20px black);
  display: grid;
  grid-template-areas: 'overlap';
  width: 35%;
  left: 1%;
  top: 5%;
  scale: 0.9;
}

h1>div {
  background-clip: text;
  -webkit-background-clip: text;
  color: #363833;
  font-family: 'Luxurious Script', sans-serif;
  font-weight: 600;
  font-size: 8rem;
  grid-area: overlap;
  letter-spacing: 1px;
  -webkit-text-stroke: 4px transparent;
}

div.bg {
  padding: 0 25px;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  filter: drop-shadow(5px 15px 15px black);
  transform: scaleY(1.05);
  transform-origin: top;
}

div.fg {
  padding: 0 25px;
  background-image: repeating-linear-gradient(5deg,
      var(--gold) 0%,
      var(--light-shadow) 23%,
      var(--gold) 31%);
  color: #111111;
  transform: scale(1);
}

h2 {
  position:absolute;
  display: grid;
  place-content: center;
  min-height: 8vh;
  font-family: "Milonga", sans-serif;
  white-space: nowrap;
  font-size: 3rem;
  font-weight: 700;
  color: var(--h2-text-color);
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 1));
  bottom: 35%;
  right: -35%;
}

h2>div {
  grid-area: 1/1/-1/-1;
}

.top {
  clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
  z-index: 2;
  text-shadow: 0px 5px 4px rgba(0, 0, 0, 0.75);
}

.bottom {
  clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
  color: transparent;
  background: -webkit-linear-gradient(179.6deg, black 53%, var(--h2-text-color) 65%);
  background: linear-gradient(179.6deg, black 53%, var(--h2-text-color) 65%);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(0.01em);
  z-index: 1;
}

/* *************************** HEADER Images ****************************** */

#first .images-wrapper {
  background-image: url(img/watch0.jpg);
}
#second .images-wrapper {
  background-image: url(img/watch1.jpg);
}
#third .images-wrapper {
  background-image: url(img/watch2.jpg);
}
#fourth .images-wrapper {
  background-image: url(img/watch9.jpg);
}
#fifth .images-wrapper {
  background-image: url(img/watch4.jpg);
}


.images-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* *************************** HEADER Text ******************************** */



#second .text-wrapper {
  background: radial-gradient(#2B0202, #000000);
  left: -40%;
  bottom: 50px;
  width: 40%;
}

#third .text-wrapper {
  background: radial-gradient(#0A001C, #000000);
  right: -40%;
  bottom: 85px;
  margin-left: 1%;
  width: 40%;
}

#fourth .text-wrapper {
  background: radial-gradient(#000741, #000000);
  left: -42%;
  bottom: 75px;
  margin-left: 1%;
  width: 40%;
}

#fifth .text-wrapper {
  background: radial-gradient(#081910, #000000);
  right: -40%;
  bottom: 70px;
  margin-left: 1%;
  width: 40%;
}

.text-wrapper {
  position: absolute;
  min-width: 680px;
  padding: 20px 75px;
  border: 1px solid var(--gold);
  border-image-slice: 1;
  border-radius: 5px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.6);
}

.text-wrapper p {
  font-size: 1.5em;
  line-height: 150%;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  opacity: 0;
}

.text-wrapper::after {
  content: "";
  position: absolute;
  border-left-width: 0px;
  border-right-width: 0;
  border-bottom-width: 3px;
  border-top-width: 0;
  border-style: solid;
  border-image: linear-gradient(0.25turn, var(--light-shadow), var(--gold), var(--dark-shadow));
  border-image-slice: 1;
  width: 650%;
  height: 115%;
  top: 0;
  left: -275%;
  z-index: 1;
}


/* ************************************************************************ */
/* ******************************* SLIDES ********************************* */
/* ************************************************************************ */

.horizontal-1 {
  width: 200vw;
  height: 600vh;
  display: flex;
  flex-wrap: nowrap;
}
.horizontal-2 {
  width: 200vw;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
}

.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow:hidden;
  margin: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  color: #000000;
  text-align: center;
}

.slide p {
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
}


/* *************************** SLIDE *************************** */

.slide::after {
  /* A voir ce qu'il en est */
  content: "";
  position: absolute;
  border-left-width: 0px;
  border-right-width: 0;
  border-bottom-width: 3px;
  border-top-width: 0;
  border-style: solid;
  border-image: linear-gradient(0.25turn, var(--light-shadow), var(--gold), var(--dark-shadow));
  border-image-slice: 1;
  width: 405%;
  height: 115%;
  top: 0;
  left: -175%;
  z-index: 1;
}

h3 {
  color: #000000;
  font-size: 2.7rem;
  margin-bottom: 45px;
  z-index: 1;
}

.two,
.three,
.four,
.services-container {
  background-color: green;
  color: var(--gold);
}

.services-container h3,
.infos h3 {
  color: var(--gold);
}

/* ******************* Présentation ******************** */

#presentation {
  /* background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%); */background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  /* opacity: 0.5; */
}

#presentation .presentation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

#presentation img {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  margin-right: 25px;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.3);
}

.presentation-content p {
  text-align: justify;
}

.meca {
  position: absolute;
  width: 100%;
  height: 100vh;
  margin: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: left;
}

.meca img {
  position: absolute;
  height: 100vh;
  opacity: 0.15;
}



/* ************************ SERVICES *********************** */


.two {
  height: 600vh;
}


.services-container {
  z-index: 2;
  position: relative;
  width: 100vw;
  height: 600vh;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
  background: #000;
  overflow: hidden;
}



#services .box {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  padding: 40px;
  box-shadow: 0 0 20px rgba(218, 155, 32, 0.3);
}

#services .box:nth-child(1) {
  background: #020617;
}

#services .box:nth-child(2) {
  background: radial-gradient(rgb(34, 34, 34), rgb(0, 0, 0));
}

#services .box:nth-child(3) {
  background: radial-gradient(#2B0202, #000000);
}

#services .box:nth-child(4) {
  background: radial-gradient(#0A001C, #000000);
}

#services .box:nth-child(5) {
  background: radial-gradient(#000741, #000000);
}

#services .box:nth-child(6) {
  background: radial-gradient(#081910, #000000);
}

#services .box .contentbx i {
  font-size: 5rem;
  margin-bottom: 5rem
}

#services .box .contentbx h3 {
  font-size: 3rem;
  margin-bottom: 5rem;
}

#services .box .contentbx p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 25px;
  text-align: center;
}

#services .box .contentbx i,
#services .box .contentbx h3,
#services .box .contentbx p,
#infos a,
#contact h3,
#infos h3,
#contact input::-webkit-input-placeholder, 
#contact textarea::-webkit-input-placeholder {
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
}

@keyframes MoveBackgroundPosition { 
  0% {
      background-position: 0% 50%
  }
  
  50% {
    background-position: 100% 50%
  }
  
  100% {
    background-position: 0% 50%
  }
}


/* ************************* CONTACT ************************ */

#contact {
  background-color: #4d4855;
  background-image: radial-gradient( #544c5e 0%, #000000 58%);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#contact h3 {
  margin-top: 75px;
}

#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  z-index: 2;
}

form input,
#contact textarea {
  background-color: rgba(5, 5, 5, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
          color: var(--gold);
  width: 90vw;
  max-width: 950px;
  margin: 10px 0;
  outline: 0;
  font-size: 1.1rem;
  resize: none;
  box-shadow: 6px 6px 10px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.5);
  padding : 15px;
  border-radius: 6px;
}
#contact textarea {
  height: auto;
}

#contact input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* color: #CCC; */
  font-size: 1.1rem;
}  

#contact form input[type="submit"] {
  margin-bottom: 10px;
  background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  /* opacity: 0.5; */
  padding: 15px;
  color: #111;
  font-size: 1.1rem;
  font-weight: bold;
  border: 0;
  transition: 0.3s;
  cursor: pointer;
}

#contact form input[type="submit"]:hover{
  background: repeating-linear-gradient(to bottom left, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  opacity: 0.8;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}


/* ************************************* INFOS ********************************** */

#infos {
  position: relative;
  background-color: #2b4162;
  background-image: linear-gradient(315deg, #2b4162 0%, #12100e 74%);
  width: 100vw;
  height: 100vh;
}

#infos .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#infos .find {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100vw;
}

#infos h3 {
  margin-bottom: 30px;
  text-align: center;
}

#infos p {
  padding-top: 25px;
  font-size: 1.2rem;
  margin: 10px;
}

#infos p strong {
  font-size: 2rem;
}

#infos .adresse {
  display: block;
  padding: 50px;
}

#infos .horaires {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#infos .horaires span {
  font-size: 2rem;
}

#infos .horaires td {
  font-size: 1.2rem;
  padding: 3px 25px;

}

#infos .adress {
  margin-top: 50px;
  text-align: center;
}

#infos .atelier {
  width: 35vw;
  height: auto;
}

#infos .atelier img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.3);
}

#infos .social {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  margin: 0 0 45px 0;
  z-index: 2;
}
#infos .social a {
  margin: 0 10px;
  font-size: 2.5rem;
  transition: 0.5s;
}
#infos .social a:hover {
  transform: rotateZ(4deg) translateY(-5px) scale(1.2);
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
}

#infos .pmr {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 60px; */
  padding: 0 40px;
}
#infos .pmr i {
  font-size: 3rem;
  /* padding: 10px; */
  margin-right: 25px;
  color: white;
  /* background-color: blue; */
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  border-radius: 7px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#infos .pmr p {
  font-size: 1.2rem;
}


/* ******************************** REVIEWS ************************************** */

.reviews {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
  padding: 20px;
  text-align: center;
}

.reviews h3 {
  /* font-size: 2em; */
  margin-bottom: 100px;
  /* color: #333; */
}

.avis-container {
  width: 80%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.avis {
  background: 
    linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.9) 50%,
        rgba(0, 0, 0, 1) 100%
    ),
     /* Fond en dégradé noir pour effet velours */
    linear-gradient(
        to top,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%
    ), 
    /* Reflet */
    linear-gradient(
        to left,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%
    ); 
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  flex: 1 1 calc(50% - 40px);
  max-width: calc(50% - 40px);
  min-width: 300px;
  min-height: 240px;
  color: white;
}

.avis h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
  background-image: repeating-linear-gradient(to bottom right, #a2682a 0%, #be8c3c 8%, #be8c3c 18%, #d3b15f 27%, #faf0a0 35%, #ffffc2 40%, #faf0a0 50%, #d3b15f 58%, #be8c3c 67%, #b17b32 77%, #bb8332 83%, #d4a245 88%, #e1b453 93%, #a4692a 100%);
  background-size: 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(255, 200, 0, .3));
  animation: MoveBackgroundPosition 6s ease-in-out infinite;
}

.avis p {
  margin-top: 25px;
  line-height: 1.5;
  
}

.avis p:nth-of-type(2) {
  font-size: 1.2em;
  color: var(--gold); /* Couleur pour les étoiles */
}



/* ******************************** FOOTER ************************************** */

footer {
  background-color: #111;
  bottom: 0px;
  width: 100%;
  height: 150px;
  box-shadow: 8px 8px 12px rgba(0, 0 , 0, 0.7);
  border: 1px solid rgba(40, 40, 40, 0.5);  
  z-index: 12;
  font-family: "Duru Sans";
}

.links{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.links p{
  margin: 30px 30px;
}
.links .link{
  font-size: 1rem;
  text-decoration: none;
  color: #666;
  position: relative;
}
.links .link:hover{
  color: #aaa;
}
.links .link::before{
  content: "";
  position: absolute;
  background: #aaa;
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.links .link:hover::before{
  transform-origin: 0 0;
  transform: scaleX(1);
}
.webcod, .ebcod{
  text-align: center;
  color: #757575;
  font-size: 1rem;
  padding-bottom: 25px;
}
.webcod span{
  font-weight: bold;
  text-shadow: 0 0 1px rgba(0, 228, 255, 0.6);
  font-family: Megrim;
  font-size: 1rem;
}

.webcod a {  
  position: relative;
}
.webcod a::before {
  content:"";
  position: absolute;
  background: #cc0b0d;
  width: 100%;
  height: 1px;
  bottom: -2px;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

.webcod a:hover::before {
  transform-origin: 0 0;
  transform: scaleX(1);
}

.webcod span #w{
  color: #cc0b0d;
}


