footer#footer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  font-size: 20px;
}
@media screen and (max-width: 1400px) {
  footer#footer-section {
    gap: 10px;
  }
}
footer#footer-section h3 {
  font-weight: bold;
  font-size: 20px;
}
footer#footer-section .top--container {
  background-color: var(--light-grey-normal);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 25px;
}
footer#footer-section .footer--image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 1200px) {
  footer#footer-section .footer--image-container {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  footer#footer-section .footer--image-container {
    gap: 25px;
  }
}
footer#footer-section .footer--image-container img {
  width: auto;
  max-width: 100px;
}
footer#footer-section .footer--image-container a {
  display: block;
  max-width: 350px;
}
footer#footer-section .footer--image-container a svg {
  width: auto;
  height: auto;
}
@media screen and (max-width: 1400px) {
  footer#footer-section .footer--image-container {
    justify-content: flex-start !important;
  }
  footer#footer-section .footer--image-container a,
  footer#footer-section .footer--image-container img {
    max-width: auto;
  }
}
footer#footer-section .footer--links {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  list-style: none;
  text-align: center;
  width: 100%;
  max-width: 270px;
  padding: 0;
}
footer#footer-section .footer--links a {
  font-size: 14px;
  color: var(--fox-blue-normal);
  font-family: var(--caption-tertiary-medium);
  font-size: var(--font-size-caption-tertiary);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  footer#footer-section .footer--links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 0;
  }
  footer#footer-section .footer--links a {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  footer#footer-section .footer--links {
    gap: 0;
  }
}
footer#footer-section .main--footer {
  display: flex;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 50px;
}
footer#footer-section .main--footer .menus--container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
footer#footer-section .main--footer .menus--container .menu--container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 250px;
}
footer#footer-section .main--footer .menus--container .menu--container .menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  list-style: none;
}
footer#footer-section .main--footer .menus--container .menu--container .menu .menu-item a {
  text-decoration: none;
  color: var(--footer-text-color);
  font-size: 20px;
}
footer#footer-section .main--footer .menus--container .menu--container svg {
  width: 31px;
  height: auto;
}
footer#footer-section .bottom--footer {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}
footer#footer-section .bottom--footer .bottom--menus {
  display: flex;
  gap: 50px;
}
footer#footer-section .bottom--footer .bottom--menus .menu {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
}
footer#footer-section .bottom--footer .bottom--menus .menu .menu-item a {
  display: block;
  text-decoration: none;
  color: var(--footer-text-color);
  font-family: var(--primary-medium);
  font-size: 10px;
}
footer#footer-section .bottom--footer .socials--menus {
  display: flex;
  gap: 10px;
}
footer#footer-section .menu .menu-item a {
  position: relative;
}
footer#footer-section .menu .menu-item a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--menu-link-color);
  transition: width 0.5s ease-in-out;
}
footer#footer-section .menu .menu-item a:hover:after {
  width: 100%;
}
footer#footer-section .copyright {
  color: var(--footer-text-color);
  font-size: 14px;
  padding: 15px;
}
footer#footer-section .copyright p {
  font-family: var(--primary-medium);
}
footer#footer-section .copyright.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  footer#footer-section .copyright.mobile {
    display: block;
  }
}
@media screen and (max-width: 1280px) {
  footer#footer-section .main--footer {
    flex-direction: column;
    gap: 50px;
  }
  footer#footer-section .main--footer .footer--image-container {
    justify-content: flex-start;
    text-align: center;
  }
  footer#footer-section .bottom--footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer#footer-section .bottom--footer .socials--menus {
    justify-content: center;
    order: 1;
  }
  footer#footer-section .bottom--footer .copyright {
    order: 2;
    text-align: center;
  }
  footer#footer-section .bottom--footer .bottom--menus {
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    order: 3;
  }
  footer#footer-section .bottom--footer .bottom--menus .menu .menu-item a {
    text-decoration: underline;
    text-align: center;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1400px) {
  footer#footer-section .main--footer {
    flex-direction: column;
    gap: 50px;
  }
  footer#footer-section .main--footer .menus--container {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
  }
  footer#footer-section .bottom--footer {
    flex-direction: column;
    gap: 100px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 1200px) {
  footer#footer-section .bottom--footer {
    gap: 50px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 768px) {
  footer#footer-section .bottom--footer {
    gap: 25px;
  }
}
@media screen and (max-width: 1400px) {
  footer#footer-section .bottom--footer .socials--menus {
    justify-content: center;
    order: 1;
  }
  footer#footer-section .bottom--footer .copyright {
    order: 2;
    text-align: center;
    font-size: 10px;
  }
  footer#footer-section .bottom--footer .bottom--menus {
    flex-direction: column;
    gap: 50px;
    order: 3;
    font-size: 12px;
  }
  footer#footer-section .bottom--footer .bottom--menus .menu .menu-item a {
    text-decoration: underline;
    text-align: center;
    line-height: 1.5;
  }
}

/*# sourceMappingURL=footer.css.map */
