header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  background-color: black;
}
header img {
  height: 70px;
}
header nav {
  display: none;
}
header nav ul li a {
  color: white;
}
header nav ul li a:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 40px 20px 0px;
  background-color: black;
  color: white;
}
footer .logo {
  width: 150px;
  margin-bottom: 20px;
}
footer ul li {
  padding: 5px 0px;
  font-weight: bold;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer hr {
  margin: 20px 0px;
  height: 0.01px;
  background-color: bisque;
}
footer p {
  text-align: center;
  font-weight: bold;
  color: rgb(193, 193, 193);
}
footer p a {
  color: white;
}
footer p a:hover {
  text-decoration: underline;
}
footer .logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0px;
}
footer .logos a img {
  width: 40px;
  margin: 0px 5px;
  border: 2px solid white;
  border-radius: 100px;
}

.home-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}
.home-mobile h1 {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 10px;
}
.home-mobile a {
  text-decoration: none;
  border: none;
  color: white;
}
.home-mobile .mySlides {
  display: none;
  width: 90vw;
}
.home-mobile .mySlides img {
  vertical-align: middle;
  border-radius: 10px;
}
.home-mobile .slideshow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  position: relative;
  margin: 0px auto;
  box-shadow: 0px 0px 2px;
  border-radius: 10px;
}
.home-mobile .titleMar {
  margin-top: 20px;
}
.home-mobile .carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.home-mobile .carousel-button.prev {
  left: 10px;
}
.home-mobile .carousel-button.next {
  right: 10px;
}
.home-mobile .dot {
  background-color: rgb(201, 201, 201);
  padding: 1px 10px;
  margin: 0px 5px;
  border-radius: 100%;
  cursor: pointer;
}
.home-mobile .active {
  background-color: black;
}
.home-mobile .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.home-desktop {
  display: none;
}

@media (min-width: 768px) {
  header {
    justify-content: space-around;
  }
  header img {
    height: 80px;
  }
  header nav {
    display: flex;
  }
  header nav ul {
    display: flex;
    flex-direction: row;
  }
  header nav ul li {
    margin: 0 10px;
    font-size: 20px;
  }
  footer .div-desktop {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  header img {
    height: 90px;
  }
  header nav ul li {
    margin: 0 15px;
    font-size: 24px;
  }
  footer {
    padding: 60px 120px 20px;
  }
  footer .div-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 0px 120px;
    font-size: 24px;
  }
  footer .div-desktop .logo {
    width: 200px;
  }
  footer .div-infos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
  }
  footer .div-infos p {
    text-align: left;
    font-size: 20px;
  }
  footer .div-infos .logos img {
    width: 50px;
  }
}/*# sourceMappingURL=style.css.map */