footer {
  background-color: var(--primary);
}

.footer-top {
  padding: 25px 50px;
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color: var(--white);
  border-bottom: 1px solid var(--white);
}


.presentation,
.footer-nav,
.footer-socials {
  flex: 1 1 calc(33% - 95px);
  min-width: 350px;
}

.presentation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  font-size: 14px;

  margin: 0px;
  padding: 0px;
}

.footer-nav div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 75px;
  box-sizing: border-box;
}

.footer-nav h2 {
  font-size: 1.3em;
  margin: 10px 0 25px 25px;
  color: var(--white)
}

.presentation p {
  margin: 10px 25px;
  line-height: 130%;
  flex: 1 1 58%;
  text-align: justify;
}

.footer-logo {
  flex: 1 1 9%;
}

.footer-logo,
.footer-logo img {
  height: 150px;
  width: auto;
}

.footer-bottom {
  color: var(--white);
  display: flex;
  flex: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 25px;
}

.footer-bottom p {
  margin: 0;
  font-size: clamp(9px, 1vw, 15px);
}

.footer-nav ul {
  margin: 0px;
  padding: 0px;
}

.footer-nav ul li {
  list-style: none;
  color: var(--white);
  margin-bottom: 10px;
}

.footer nav ul li a {
  color: var(--white);
  text-decoration: none;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-top: 10px;
}

.cta-contact-footer {
  padding: .65rem 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.footer-sn {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2vw;
}

.footer-sn-link {
  height: 2vw;
  width: 2vw;
  min-height: 50px;
  min-width: 50px;
  border-radius: 75px;
  border: 2px solid white;
  transition: border-color 0.3s ease;
  position: relative;
}

.footer-sn a {
  width: 100%;
  height: 100%;
}

.footer-sn a:hover img {
  filter: invert(0);
}

.footer-sn a:hover .footer-sn-link {
  border-color: black;
}

.footer-sn-link img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 1vw;
  width: 1vw;
  min-height: 25px;
  min-width: 25px;
  filter: invert(1);
  transition: filter 0.3s ease;
}

@media (max-width: 1100px) {
  .footer-top {
    padding: 25px 10px;
  }

  .presentation,
  .footer-nav {
    display: none;
  }
}