@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&family=Poppins:wght@600&display=swap");
.footer {
  position: relative;
  /* Make sure the footer is positioned relative for internal absolute positioning */
  display: flex;
  min-height: 424px;
  align-items: center;
}
.footer .horizontal-container {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.footer .horizontal-container .footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
}
.footer .horizontal-container .footer-logo img.main-logo {
  object-fit: contain;
}
.footer .horizontal-container .footer-links,
.footer .horizontal-container .footer-contact {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.footer .horizontal-container .footer-links .mail-to,
.footer .horizontal-container .footer-contact .mail-to {
  display: flex;
  gap: 5px;
  cursor: pointer;
}
.footer .horizontal-container .footer-links .mail-to:hover,
.footer .horizontal-container .footer-contact .mail-to:hover {
  color: #00AA96;
}
.footer .horizontal-container .footer-links div,
.footer .horizontal-container .footer-contact div {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
}
.footer .horizontal-container .footer-links a,
.footer .horizontal-container .footer-contact a {
  list-style: none;
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
}
.footer img.corner-motif {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 314.23;
  /* Adjust height as needed */
  width: auto;
}
@media screen and (max-width: 1200px) {
  .footer img.corner-motif {
    height: 210px;
    /* Adjust height as needed */
  }
}
@media screen and (max-width: 768px) {
  .footer .horizontal-container {
    flex-direction: column;
    position: relative;
    padding: 20px;
    margin-left: 0px;
    padding-left: 0px;
  }
  .footer .horizontal-container .footer-logo {
    align-self: center;
    height: auto;
    margin: 20px;
  }
  .footer .horizontal-container .footer-logo img.corner-motif {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 15vh;
    width: auto;
  }
  .footer .horizontal-container .footer-links,
  .footer .horizontal-container .footer-contact {
    width: 100%;
    text-align: left;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    gap: 3px;
  }
  .footer .horizontal-container .footer-contact {
    margin-bottom: 80px;
  }
  .footer img.corner-motif {
    height: 198px;
    /* Adjust height as needed */
  }
}

.site-links {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.site-links:hover {
  transform: scale(1.1);
}