* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

/*---------------------FOOTER------------------------*/

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10vw;
  border-top: #D9FF00 solid 3px;
  background-color: #22272D;;
}

footer .footerdiv {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100vw;
  height: 10vw;
  border-top: #D9FF00 solid 4px;
  background-color: #22272D;
  background-image: url(../IMAGE/ASSET/pa-pattern.svg);
  background-size: 113vw auto;
  background-repeat: repeat;
  background-position-X: center;
  animation: deplacement 300s infinite linear alternate;
}

footer .footerdiv img {
  width: 3vw;
  transition: 0.5s;
}


#contact2 {
  background-color: #F3E4D6;
  padding: 0 0.8vw;
  border-radius: 0.5vw;
  font-family: Upton;
  text-transform: uppercase;
  font-size: 2.8vw;
  font-weight: 700;
  text-decoration: none;
  color: #1E2329;
  transition: 0.5s;

}

.footerdiv img:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.footerdiv a:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.footerdiv p {
  position: absolute;
  justify-self: center;
  margin-top: 6.5vw;
  margin-left: 1.2vw;
  font-family: Clash;
  font-size: 0.5vw;
  letter-spacing: 0.05vw;
  text-align: center;
  opacity: 0.6;

}


@keyframes deplacement {
  from {
    background-position-x: center;
  }

  to {
    background-position-x: 500vw;
  }

}