.header .container {
  padding: 20px 0;
}
@media (max-width: 990px) {
  .header .container {
    padding: 10px 0;
  }
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__logo {
    margin: 0;
  }
}
.header__text {
  margin-right: auto;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 990px) {
  .header__text {
    display: none;
  }
}
.header__btn {
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__btn {
    flex-direction: column;
    position: fixed;
    opacity: 0;
    transform: translateX(-110%);
    height: 200px;
    width: 200px;
    left: 0;
    padding: 20px 60px;
    top: 130px;
    z-index: 999;
    justify-content: center;
  }
}
.header .active-menu {
  opacity: 1;
  transform: translateX(0);
}
.header__bonus {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  appearance: none;
  cursor: pointer;
  background: transparent;
  border: none;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__bonus {
    margin-bottom: 15px;
  }
}
.header__bonus svg {
  margin-right: 8px;
}
.header__log {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: 20px;
  margin-left: 15px;
  text-transform: uppercase;
  line-height: 23px;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .header__log {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
.header__sign {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border-radius: 20px;
  line-height: 23px;
  margin-left: 35px;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .header__sign {
    margin: 0 0 15px 0;
    width: 100%;
    box-sizing: border-box;
  }
}
.header .call-menu {
  display: none;
}
@media (max-width: 990px) {
  .header .call-menu {
    display: block;
  }
}

.nav {
  margin-bottom: 15px;
}
.nav ul {
  padding: 15px 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  ustify-content: center;
}
@media (max-width: 990px) {
  .nav ul {
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 10px 0;
  }
}
.nav li {
  margin-right: 20px;
  min-width: 70px;
}
.nav li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.over {
  overflow: hidden;
}

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