footer#footer {
  background-color: var(--background-secondary);
  color: var(--light);
  overflow: hidden;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  footer#footer {
    position: relative;
    z-index: 4;
  }
}
footer#footer .container {
  width: var(--container-large-width);
  margin: auto;
  padding: 64px 0px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  footer#footer .container {
    flex-direction: column;
    align-items: center;
  }
}
footer#footer .container > div:not(:last-child) {
  border-bottom: 1px solid white;
}
footer#footer .container .logo-container {
  padding-bottom: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer#footer .container .logo-container {
    display: flex;
    justify-content: center;
  }
  footer#footer .container .logo-container img {
    width: 100px;
  }
}
footer#footer .container .menu-container {
  display: flex;
  justify-content: space-between;
  padding: 70px 0px;
}
@media screen and (max-width: 1100px) {
  footer#footer .container .menu-container {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container {
    flex-direction: column;
    width: 100%;
    padding: 20px 0px;
  }
}
footer#footer .container .menu-container ul {
  margin: 0px;
}
footer#footer .container .menu-container ul, footer#footer .container .menu-container li {
  list-style: none;
  padding-top: 0px;
  padding-left: 0px;
  margin-left: 0px;
}
footer#footer .container .menu-container .menu-wp {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  footer#footer .container .menu-container .menu-wp {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .menu-wp {
    width: 100%;
  }
}
footer#footer .container .menu-container .menu-wp #menu-footer {
  display: flex;
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .menu-wp #menu-footer {
    flex-direction: column;
    gap: 50px;
  }
}
footer#footer .container .menu-container .menu-wp #menu-footer a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .menu-wp #menu-footer > li {
    width: 100%;
  }
}
footer#footer .container .menu-container .menu-wp #menu-footer > li > a {
  color: var(--secondary);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
}
footer#footer .container .menu-container .menu-wp #menu-footer > li ul.sub-menu {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .menu-wp #menu-footer > li ul.sub-menu {
    margin-top: 0px;
  }
}
footer#footer .container .menu-container .menu-wp #menu-footer > li ul.sub-menu li {
  text-transform: uppercase;
}
footer#footer .container .menu-container .terrain-a-vendre {
  width: 50%;
  max-width: 400px;
  position: relative;
}
footer#footer .container .menu-container .terrain-a-vendre .title {
  margin-bottom: 25px;
}
@media screen and (max-width: 1100px) {
  footer#footer .container .menu-container .terrain-a-vendre {
    margin-left: 70px;
  }
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .terrain-a-vendre {
    width: calc(100% - 70px);
    max-width: calc(100% - 70px);
    margin-left: 0px;
  }
}
footer#footer .container .menu-container .terrain-a-vendre .image {
  position: absolute;
  width: 50px;
  left: -70px;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .terrain-a-vendre .image {
    position: relative;
    left: 0px;
    margin-bottom: 10px;
  }
}
footer#footer .container .menu-container .terrain-a-vendre .title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--secondary);
}
footer#footer .container .menu-bottom-container {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-transform: uppercase;
  font-weight: 500;
}
footer#footer .container .menu-bottom-container .legal {
  height: 100%;
  display: flex;
  align-items: center;
}
footer#footer .container .menu-bottom-container .socials ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0px;
}
footer#footer .container .menu-bottom-container .socials a img {
  width: 30px;
  height: 30px;
}