.hero__menu {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 8px 15px;
  background-color: #ffffff;
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 900;
}

.hero__menu.hero__menu_main .hero-menu__item_community {
  display: none !important;
}

.hero__menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 !important;
  font-size: 10px !important;
  text-align: center;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #0b304d !important;
  background-color: #ffffff !important;
  border: none !important;
}

.hero__menu a:hover {
  color: var(--color-secondary) !important;
}

.hero__menu a img {
  width: auto;
  height: 28px;
  margin-bottom: 14px;
}

@media (min-width: 576px) {
  .hero__menu.hero__menu_main {
    position: static;
    gap: 14px;
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .hero__menu.hero__menu_main a {
    padding: 4px 10px !important;
    font-size: 14px !important;
    color: #ffffff !important;
    background-color: #00adef !important;
    border: 2px solid #00adef !important;
  }

  .hero__menu.hero__menu_main a:hover {
    color: #ffffff !important;
    background-color: #00adef !important;
  }

  .hero__menu.hero__menu_main a img {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero__menu.hero__menu_community {
    position: static;
    gap: 14px;
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .hero__menu.hero__menu_community a {
    padding: 4px 10px !important;
    font-size: 14px !important;
    color: #ffffff !important;
    background-color: #00adef !important;
    border: 2px solid #00adef !important;
  }

  .hero__menu.hero__menu_community a:hover {
    color: #ffffff !important;
    background-color: #00adef !important;
  }

  .hero__menu.hero__menu_community a img {
    display: none;
  }

  .hero__menu.hero__menu_community .hero-menu__item_community {
    display: none !important;
  }
}
