.footer-foot {
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #9a9a9a;
  font-size: 16px;
  padding-top: 20vh;
  padding-bottom: 20px;
}
.footer-foot::after,
.footer-foot::before {
  display: none;
}
.footer-foot a {
  color: #9a9a9a;
  text-decoration: none;
}
.footer-foot h2 {
  font-weight: 700;
  font-size: 18px;
}
.footer-foot .footer-content-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-foot .footer-content-container section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: calc(100%/5 - 12px);
}
.footer-foot .footer-content-container section h2,
.footer-foot .footer-content-container section p {
  margin: 0;
}
.footer-foot .footer-content-container section .socials-container {
  display: flex;
  gap: 12%;
}
.footer-foot .footer-content-container section .footer-content-legal-links {
  display: none;
}
.footer-foot .footer-content-container section .roig-logo img {
  width: 75%;
}
.footer-foot .footer-content-container section:first-child {
  gap: 40px;
}
.footer-foot .footer-bottom-container {
  display: flex;
  justify-content: space-between;
}
.footer-foot .footer-bottom-container .footer-legal-links {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .footer-foot .footer-content-container {
    row-gap: 60px;
  }
  .footer-foot .footer-content-container section {
    width: calc(50% - 7.5px);
  }
  .footer-foot .footer-content-container section .footer-content-legal-links {
    display: initial;
  }
  .footer-foot .footer-content-container section:first-child {
    width: 100%;
    order: 2;
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-foot .footer-content-container section:first-child .socials-container {
    gap: 5dvw;
    flex-wrap: wrap;
  }
  .footer-foot .footer-bottom-container .footer-legal-links {
    display: none;
  }
}
