.footer {
  background-image: url("/assets/images/footer/Bloc-footer.svg");
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent repeating the image */
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 247px;
  margin-top: -10%;
  position: relative;
  z-index: 4;
}

.footer-logo {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 10%;
  padding-right: 5%;
}

.footer-logo img {
  width: 341px;
  height: 68px;
  margin-bottom: 15px;
}
.footer-logo p {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.04em;
  color: #f0f3fa;
  text-align: center;
}

.footer-logo a {
  text-decoration: none;
}
.social-media-icons {
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.social-media-icon {
  width: 42px;
  height: 42px;
}
.instagram-icon {
  margin-right: 48px;
}

.linkedin-icon {
  margin-right: 48px;
}
.social-media-icon:hover {
  cursor: pointer;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  flex: 3; /* Adjust based on the number of columns */
  padding-right: 10%;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.footer-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.04em;
  font-family: "Poppins Medium", sans-serif;
  background: linear-gradient(
    90deg,
    #c9d9ff,
    #afb0f2
  ); /* Define the gradient */
  background-clip: text; /* Use the gradient as text color */
  -webkit-text-fill-color: transparent; /* Make the background visible through the text */
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bande_mentions {
  background-image: url("/assets/images/footer/Bande-mentions.svg");
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent repeating the image */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; /* This ensures vertical centering */
  text-align: center;
  height: 34px; /* Maintain the height */
}

.bande_mentions p {
  font-weight: 400;
  font-size: 10px;
  line-height: 22px; /* Adjust line height as needed */
  letter-spacing: -0.02%;
  color: #ffffff;
  margin: 0; /* Remove any default margin */
  font-family: "Poppins Medium", sans-serif;
}

.bande_mentions a {
  text-decoration: none;
  color: #ffffff;
}
.bande_mentions a:hover {
  text-decoration: underline;
}

.bande_mentions .dot {
  margin-left: 20px;
  margin-right: 20px;
}

.large-screen {
  display: inherit;
}

.small-screen {
  display: none;
}

/* Media query for phone screens (up to 768px) */
@media screen and (max-width: 768px) {
  .footer {
    background-image: url("/assets/images/footer/Bloc-footer-mobile.svg");
    background-size: cover; /* Ensure the image covers the section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating the image */
    width: 100%;
    height: 332.5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -10%;
    position: relative;
    z-index: 4;
    padding-top: 15%;
  }

  .footer-logo img {
    width: 102px;
    height: 25px;
  }

  .footer-logo {
    align-items: center;
    /* margin-bottom: 30px; */
  }
  .social-media-icon {
    width: 38px;
    height: 38px;
  }

  .footer-logo p {
    width: 291px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 0%;
  }
  .footer-links ul {
    text-align: center;
  }

  .footer-links a {
    font-size: 13.5px;
    line-height: 15px;
  }

  .large-screen {
    display: none;
  }

  .small-screen {
    display: block;
  }
}
