@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --bg-color: #f4f4f3;
  --primary-color: #333;
  --secondary-color: #cd1220;
  --light-gray: #616264;
  --section-width: 80%;
  --entreprise1: "Techno";
  --entreprise2: "Legno";
  --adresse: "Route Mediouna, km 10.5, Casablanca 20180, Morocco.";
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  position: relative;
}

ul {
  list-style: none;
}

/* Animations */

@keyframes fadeLeft {
  0% {
    transform: translateY(5rem);
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
}

/* Responsive */

@media (max-width: 800px) {
  :root {
    --section-width: 100%;
  }

  section {
    width: 100%;
  }
  #prev-slide {
    left: 50%;
    top: 90%;
  }
  #next-slide {
    right: 50%;
    top: 90%;
  }
}
