footer#footer-section {
  padding: 50px;
  background: var(--background-color);
}
footer#footer-section h3 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}
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 .footer--image-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
footer#footer-section .main--footer .footer--image-container img {
  width: 100%;
  max-width: 350px;
}
footer#footer-section .main--footer .footer--image-container a {
  display: block;
  max-width: 350px;
}
footer#footer-section .main--footer .footer--image-container a svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  footer#footer-section .main--footer .footer--image-container {
    justify-content: center !important;
  }
  footer#footer-section .main--footer .footer--image-container a {
    max-width: 250px;
  }
}
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(--menu-link-color);
}
footer#footer-section .bottom--footer {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--border-color);
}
footer#footer-section .bottom--footer .copyright {
  color: var(--menu-link-color);
}
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(--menu-link-color);
}
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%;
}
@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;
    gap: 25px;
  }
  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: 768px) {
  footer#footer-section {
    padding-left: 25px;
    padding-right: 25px;
  }
  footer#footer-section .main--footer {
    flex-direction: column;
    gap: 50px;
  }
  footer#footer-section .main--footer .menus--container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }
  footer#footer-section .bottom--footer {
    flex-direction: column;
    gap: 25px;
    padding-top: 25px;
    margin-top: 25px;
  }
  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: 10px;
  }
  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 */
