/* Media query breakpoints */
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .footer-menu {
    flex-direction: row;
    justify-content: space-between;
    gap: unset;
  }
}
@media (min-width: 1400px) {
  .footer-menu {
    gap: 132px;
    justify-content: unset;
  }
}
.footer-menu__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media (min-width: 768px) {
  .footer-menu__item {
    gap: 24px;
  }
}
@media (min-width: 1400px) {
  .footer-menu__item {
    width: 192px;
  }
}
.footer-menu__item > span {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 8px;
  color: var(--text);
  font-family: "Prelo semibold", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .footer-menu__item > span {
    display: block;
    width: auto;
    margin-bottom: 24px;
    cursor: initial;
  }
}
.footer-menu__item > span.active {
  margin-bottom: 24px;
}
.footer-menu__item > span::after {
  content: "\e909";
  font-family: "icomoon";
  font-size: 1.5rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-display: swap;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
}
@media (min-width: 768px) {
  .footer-menu__item > span::after {
    content: none;
  }
}
.footer-menu__item > span.active::after {
  transform: rotate(180deg);
}
.footer-menu__submenu {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .footer-menu__submenu {
    display: flex;
  }
}
.footer-menu__submenu.active {
  display: flex;
}
.footer-menu__submenu a {
  color: var(--text);
  font-family: "Prelo book", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: none;
}
.footer-menu__submenu a.last {
  font-weight: 600;
  text-decoration-line: underline;
}
.footer-menu__submenu a:hover {
  color: var(--blue-hover);
  text-decoration: underline;
}
/*# sourceMappingURL=footer-menu.css.map */
