*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  max-width: 1440px;
  margin: 0 auto;
  height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5rem 0.1rem 0 0.1rem;
}
/* --------------------loader-------------------- */

.animate {
  text-align: center;
  animation: load 1s infinite ease alternate;
  width: 280px;
  height: 390px;
}
@keyframes load {
  60% {
    opacity: 1;
  }
  100% {
    transform: scale(1.02);
  }
}
.loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(ressources/image/background-loader.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.loader.hidden {
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.title h2 {
  font-size: 33px;
  color: #333;
  margin-top: 35px;
  margin-bottom: 19px;
  text-align: center;
}
h3 {
  color: #333;
  /* margin-bottom: 30px; */
  text-align: center;
}

.logo {
  width: 150px;
  height: 150px;
}
.drzimo-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.drzimo-image {
  width: 70px;
  height: 70px;
}
/* ul {
  display: flex;
  justify-content: center;
}
li {
  margin: 10px;
  list-style-type: none;
} */
/* .logo-reseaux {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease-in-out;
}
.logo-reseaux:hover {
  transform: scale(1.2);
} */

/* Responsive style */
@media screen and (max-width: 860px) {
  .animate {
    width: 200px;
    height: 290px;
  }
}
@media screen and (max-width: 500px) {
  .loader {
    background-position: 33% 42%;
  }

  .animate {
    width: 150px;
    height: 190px;
  }

  .title h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 400px) {
  .title h2 {
    font-size: 17px;
  }
  h3 {
    font-size: 16px;
  }
}
