footer {
  align-items: flex-start !important;
}

footer h1 {
  font-size: 50px;
  font-weight: 500;
  width: 550px;
}

footer button {
  background-color: var(--purple);
  font-size: 25px;
  color: var(--light);
  padding: 1.5rem 5rem;
  border: none;
  border-radius: 3rem;
  margin: 3rem 0;
  transition: background 0.3s ease-in-out;
}

footer button:hover {
  background-color: var(--purple-hover);
}

footer p {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 2rem;
}

footer .mail {
  color: var(--purple);
  font-size: 25px;
}

footer .rights {
  margin: 3rem 0;
  font-size: 16px;
}

footer .rights a {
  color: var(--dark);
  margin-left: 1rem;
  transition: opacity 1s ease-in-out;
}

footer .rights a:hover {
  opacity: 0.5;
}

footer .social {
  margin-left: 5rem;
  width: 100%;
}

footer .social a {
  text-decoration: underline;
  font-size: 25px;
  color: var(--dark);
  margin-right: 3rem;
  line-height: 5rem;
  transition: opacity 1s ease-in-out;
}

footer .social a:hover {
  opacity: 0.5;
}

footer .social-links {
  width: 500px;
}

footer .animation_wrapper {
  width: 90%;
  height: 400px;
  position: relative;
  overflow: hidden;
  margin-left: 10%;
}

footer .animation_wrapper img {
  width: 200px;
  position: absolute;
}

footer .animation_wrapper img:first-child {
  left: 0;
  transform: rotate(16deg);
}

footer .animation_wrapper img:nth-child(2) {
  left: 25%;
  top: 12%;
  transform: rotate(150deg);
}

footer .animation_wrapper img:nth-child(3) {
  top: 35%;
  left: 42%;
  width: 150px;
}

footer .animation_wrapper img:last-child {
  right: 0;
}

.move0 {
  animation: move1 2s linear infinite alternate;
}

.move1 {
  animation: move2 1.3s linear infinite alternate;
}

.move2 {
  animation: move3 3s linear infinite alternate;
}

.move3 {
  animation: move4 2s linear infinite alternate;
}

.end {
  animation-iteration-count: 2;
}

@keyframes move1 {
  0% {
    transform: translateX(0px) translateY(0px) rotate(16deg);
  }
  80% {
    transform: translateX(25px) translateY(95px) rotate(25deg);
  }
  100% {
    transform: translateX(25px) translateY(117px) rotate(16deg);
  }
}
@keyframes move2 {
  0% {
    transform: translateX(0px) translateY(0px) rotate(150deg);
  }
  100% {
    transform: translateX(-18px) translateY(171px) rotate(100deg);
  }
}
@keyframes move3 {
  0% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateX(13px) translateY(81px) rotate(15deg);
  }
}
@keyframes move4 {
  0% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  66% {
    transform: translateX(-61px) translateY(48px) rotate(-15deg);
  }
  100% {
    transform: translateX(-69px) translateY(113px) rotate(-10deg);
  }
}
.endline {
  width: 100%;
  height: 20px;
  background-color: var(--dark);
}

/* ********** Responsive ************* */
@media screen and (max-width: 1200px) {
  footer {
    position: relative;
  }
  footer .animation_wrapper {
    display: none;
  }
  footer h1 {
    width: 500px;
  }
  footer p {
    width: 300px;
  }
  footer .social-links {
    position: absolute;
    width: 430px;
    right: 0;
    top: 50%;
    zoom: 1.1;
  }
}
@media screen and (max-width: 640px) {
  footer {
    flex-direction: column;
    margin-top: 2rem !important;
  }
  footer h1 {
    width: 100%;
  }
  footer .social-links {
    top: 67%;
    width: -moz-fit-content;
    width: fit-content;
    zoom: 1.3;
  }
  footer .social a {
    margin-right: 1rem;
    line-height: 3rem;
  }
  footer .rights {
    margin-top: 10rem;
    margin-bottom: 2rem;
    zoom: 1.2;
    width: 300px;
  }
  footer .rights a {
    margin: 0;
  }
  footer p, footer .mail {
    zoom: 1.3;
  }
  footer p {
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=Footer.css.map */