.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;
}
.rtl .header__text {
  margin-left: auto;
  margin-right: unset;
}
@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 {
        display: flex;
        gap: 15px;
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .header__wrap {
        flex-wrap: wrap;
    }
}

.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;
      display: none;
  }
}
.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;
    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;
  justify-content: flex-start;
}
@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: 16px;
  min-width: 70px;
    flex: 0 0 auto;
}
.nav li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.over {
  overflow: hidden;
}
@media (max-width: 768px) {
    .header{
        background: #276aa5;
        position: fixed;
        top: 0;
        width: -webkit-fill-available;
        z-index: 999;
    }
    .menu-active {
        transform: translateX(0%) !important;
    }
    .nav ul{
        z-index: 999;
        position: fixed;
        left: 0;
        top: 60px;
        background: #276aa5;
        overflow-x: auto;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 20px;
        box-sizing: border-box;
        padding: 10px 0;
        flex-direction: column;
        height: 100%;
        transform: translateX(-100%);
        transition: .5s;
    }

}

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