footer#footer {
  background-color: var(--background-primary);
  color: var(--light);
  overflow: hidden;
  width: 100vw;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  footer#footer {
    position: relative;
    z-index: 4;
  }
}
footer#footer .container {
  width: var(--container-width);
  margin: auto;
  padding: 100px 0px 15px 0px;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer#footer .container {
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-2-xl) 0px;
  }
}
footer#footer .container .logo-container {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer#footer .container .logo-container {
    margin-bottom: 40px;
  }
}
footer#footer .container .logo-container .logo {
  z-index: 2;
  width: 170px;
}
footer#footer .container .logo-container .logo img, footer#footer .container .logo-container .logo picture {
  width: 100%;
}
footer#footer .container .menu-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container {
    gap: 0px;
  }
}
footer#footer .container .menu-container .top {
  display: flex;
  justify-content: flex-start;
  gap: 230px;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
footer#footer .container .menu-container .top .menu-wp ul {
  margin-top: 0px;
  margin-bottom: 0px;
  list-style: none;
  padding-left: 0px;
  padding-right: 5px;
  display: flex;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px 150px;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .top .menu-wp ul {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    grid-gap: 20px;
  }
}
footer#footer .container .menu-container .top .menu-wp ul a {
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 28.5px */
  letter-spacing: -0.38px;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .top .menu-wp ul a {
    font-size: 16px;
  }
}
footer#footer .container .menu-container .bottom {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  justify-content: space-between;
}
footer#footer .container .menu-container .bottom .language-selector {
  display: flex;
  align-items: center;
  color: white;
}
footer#footer .container .menu-container .bottom .language-selector span {
  font-weight: 500;
  opacity: 0.8;
  margin-right: 5px;
}
footer#footer .container .menu-container .bottom .language-selector select {
  background-color: transparent;
  color: white;
  border: 0px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-family);
}
footer#footer .container .menu-container .bottom .language-selector select:focus {
  outline: none;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .bottom {
    flex-direction: column;
    margin-top: 32px;
    padding-bottom: 0px;
  }
}
footer#footer .container .menu-container .bottom ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
  display: flex;
  gap: 40px;
  font-size: 16px;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .bottom ul {
    width: 100%;
  }
}
footer#footer .container .menu-container .bottom ul a, footer#footer .container .menu-container .bottom ul li {
  color: white;
}
footer#footer .container .menu-container .bottom ul .credits {
  width: inherit;
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .bottom ul .credits {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer#footer .container .menu-container .bottom ul {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    gap: 20px;
  }
}
footer#footer .container .menu-container .bottom ul a {
  text-decoration: none;
}