.bottom-menu__nav__sections {
  display: flex;
  align-items: top;
  justify-content: center;
  padding: 0.5rem 0;
  margin: 0;
}
.bottom-menu__nav__sections__section {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}
.bottom-menu__nav__sections__section__title {
  padding: 0.25rem 0;
  margin: 0;
  font-size: 1.125rem;
  font-weight: bolder;
  color: var(--section-label-color);
}
.bottom-menu__nav__sections__section__nav {
  display: flex;
  flex-direction: column;
  align-items: top;
  justify-content: center;
  padding: 0.5rem 0;
  margin: 0;
}
.bottom-menu__nav__sections__section__nav__link {
  font-size: 1.125rem;
  color: white;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: rgba(255, 255, 255, 0);
}
.bottom-menu__nav__sections__section__nav__link.active {
  text-decoration-style: solid;
  text-decoration-color: white;
}
@media (hover: hover) {
  .bottom-menu__nav__sections__section__nav__link {
    transition: transform 0.2s, text-decoration-color 0.2s;
    transition-timing-function: ease-in-out;
  }
  .bottom-menu__nav__sections__section__nav__link:hover {
    text-decoration-color: white;
    transform: translate(2px, -2px);
  }
}
@media screen and (orientation: portrait) {
  .bottom-menu__nav__sections__section {
    padding: 0 0.75rem;
  }
}
.bottom-menu__nav__root {
  display: flex;
  align-items: top;
  justify-content: center;
  padding: 0.5rem 0;
  margin: 0;
}
.bottom-menu__nav__root__link {
  padding: 0.5rem;
  font-size: 1.125rem;
  color: white;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: rgba(255, 255, 255, 0);
}
.bottom-menu__nav__root__link.active {
  text-decoration-style: solid;
  text-decoration-color: white;
}
@media (hover: hover) {
  .bottom-menu__nav__root__link {
    transition: transform 0.2s, text-decoration-color 0.2s;
    transition-timing-function: ease-in-out;
  }
  .bottom-menu__nav__root__link:hover {
    text-decoration-color: white;
    transform: translate(0, -4px);
  }
}
.bottom-menu__nav__social {
  display: flex;
  align-items: top;
  justify-content: center;
  padding: 0.5rem 0;
  margin: 0;
}
.bottom-menu__nav__social__link {
  padding: 0.75rem;
}
.bottom-menu__nav__social__link__icon {
  font-size: 1.5rem;
  color: white;
  text-align: center;
}
@media (hover: hover) {
  .bottom-menu__nav__social__link {
    transition: transform 0.2s;
    transition-timing-function: ease-in-out;
  }
  .bottom-menu__nav__social__link:hover {
    transform: translate(0, -4px);
  }
}
.bottom-menu__nav {
  display: inline-block;
  width: 70%;
}
@media screen and (orientation: portrait) {
  .bottom-menu__nav {
    display: block;
    width: 100%;
  }
}
.bottom-menu > .contacts {
  display: inline-block;
}
@media screen and (orientation: portrait) {
  .bottom-menu > .contacts {
    display: block;
    margin: auto;
  }
}
.bottom-menu {
  display: flex;
  align-items: top;
  justify-content: center;
  flex-direction: row;
  padding: 1rem 0;
  background-color: var(--secondary-color);
}
@media screen and (orientation: portrait) {
  .bottom-menu {
    flex-direction: column;
  }
}
/*# sourceMappingURL=bottom-menu.css.map */