body {
  --header-button-font: 16px;
}
@media only screen and (max-width: 2560px) and (min-width: 1920px) {
  body {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1440px) and (min-width: 1024px) {
  body {
    --header-button-font: 12px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  body {
    --header-button-font: 11px;
  }
}

.big-header {
  background-color: #232B2B;
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 0 var(--base-padding);
  height: 113px;
  top: 0;
  position: sticky;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .big-header {
    display: none;
  }
}

.bh-header-center {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
}

.bh-header-center a {
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: var(--header-button-font);
}

.bh-logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}
.bh-logo {
  width: 100%;
  height: auto;
}

.bh-logo-href {
  line-height: 0;
  display: flex;
}

.bh-btn-support-container {
  display: flex;
}

.bh-btn-support {
  font-size: var(--header-button-font);
  color: white;
  background-color: #2B59FF;
  padding: 12px 16px;
  border-radius: 4px;
  border: none;
  font-family: e-Ukraine-Regular, sans-serif;
}
@media only screen and (max-width: 1024px) {
  .bh-btn-support {
    padding: 8px 12px;
    margin-left: 18px;
  }
}

.bh-btn-support:active {
  color: #2B59FF;
  background-color: white;
}

.showMenu {
  display: flex;
}

/*# sourceMappingURL=big-header.css.map */
