.header {
  position: relative;
  z-index: 9999;
  background: #fff;
  margin-bottom: 70px;
}
@media (max-width: 990px) {
  .header {
    margin-bottom: 30px;
  }
}
.header__wrap {
  display: grid;
  grid-template-columns: 130px 1fr;
  grid-gap: 20px;
  align-items: center;
  padding: 17px 0;
}
@media (max-width: 1200px) {
  .header__wrap {
    grid-gap: 5px;
  }
}
@media (max-width: 990px) {
  .header__wrap {
    padding: 15px 0;
    grid-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__lang {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-right: 30px;
}
@media (max-width: 1200px) {
  .header__lang {
    margin-right: 15px;
  }
}
@media (max-width: 990px) {
  .header__lang {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 35px;
  }
}
.header__lang:hover .header__lang-disable {
  opacity: 1;
  visibility: visible;
}
.header__lang-active {
  position: relative;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.header__lang-active img {
  position: absolute;
  right: 0;
  bottom: 6px;
}
.header__lang-active p {
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  white-space: nowrap;
  color: #5F6980;
  margin-bottom: 2px;
}
@media (max-width: 990px) {
  .header__lang-active p {
    font-size: 16px;
    line-height: 20px;
  }
}
.header__lang-active span {
  line-height: 22px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 990px) {
  .header__lang-active span {
    line-height: 23px;
    font-size: 18px;
  }
}
.header__lang-active-kz img {
  right: -18px;
}
.header__lang-disable {
  display: flex;
  align-items: center;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 100%;
  color: #000;
}
.header__lang-disable span {
  line-height: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}
.header__lang-disable span:hover {
  color: #ed3026;
}
@media (max-width: 990px) {
  .header__lang-disable span {
    line-height: 23px;
    font-size: 18px;
    top: 104%;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .header__menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    padding: 35px 15px 15px 15px;
    box-sizing: border-box;
    transform: translateX(110%);
    visibility: hidden;
    transition: 0.3s;
  }
}
.header__menu-active {
  transform: translateX(0);
  visibility: visible;
}
.header ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  box-sizing: border-box;
  padding: 0;
  margin-right: 5%;
}
@media (max-width: 1200px) {
  .header ul {
    margin-right: 30px;
  }
}
@media (max-width: 990px) {
  .header ul {
    margin-right: 0;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
.header ul li {
  margin: 0 20px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .header ul li {
    margin: 0 10px;
  }
}
@media (max-width: 990px) {
  .header ul li {
    margin: 0 0 15px 0;
    width: 100%;
  }
}
.header ul a {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: #010101;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header ul a {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 990px) {
  .header ul a {
    font-size: 20px;
    line-height: 28px;
  }
}
.header ul a:hover {
  color: #ed3026;
}
.header__btn {
  max-width: 140px;
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ED3026;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  transition: 0.3s;
}
.header__btn:hover {
  background: #A00800;
}
@media (max-width: 576px) {
  .header__btn {
    max-width: 100%;
    padding: 10px;
    width: 100%;
    font-size: 15px;
  }
}
.header__call {
  display: none;
}
@media (max-width: 990px) {
  .header__call {
    display: block;
  }
}
.header .close {
  display: none;
}
@media (max-width: 990px) {
  .header .close {
    display: block;
    position: absolute;
    right: 5px;
    top: 5px;
    height: 35px;
    width: 35px;
  }
}
.header .arrow_mob {
  position: absolute;
  height: 15px;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -23px;
  top: 7px;
  pointer-events: none;
}
@media (max-width: 990px) {
  .header .arrow_mob {
    right: 0;
    pointer-events: auto;
  }
}
.header .arrow_mob::before {
  content: "new";
  font-size: 8px;
  line-height: 10px;
  text-align: center;
  border-radius: 16px;
  width: 24px;
  height: 12px;
  position: absolute;
  top: -14px;
  right: 0;
  background: #ed3026;
  color: #fff;
}
@media (max-width: 990px) {
  .header .arrow_mob::before {
    display: none;
  }
}
.header .arrow_mob svg {
  transition: 0.3s;
}
.header .arr-active svg {
  transform: rotate(180deg);
}
.header__mega-menu {
  position: relative;
  margin-right: 15px;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .header__mega-menu {
    margin-right: 20px;
  }
}
@media (max-width: 990px) {
  .header__mega-menu {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
.header__mega-btn {
  cursor: pointer;
  color: #010101;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  position: relative;
}
@media (max-width: 990px) {
  .header__mega-btn {
    font-size: 20px;
    position: static;
    line-height: 28px;
  }
}
.header__mega-btn::after {
  content: "";
  height: 20px;
  width: 40px;
  right: -24px;
  top: 3px;
  display: block;
  position: absolute;
}
@media (max-width: 990px) {
  .header__mega-btn::after {
    display: none;
  }
}
.header .mega-menu__hide {
  background: #fff;
  padding: 30px;
  width: 250px;
  box-sizing: border-box;
  position: absolute;
  top: 280%;
  border-radius: 12px;
  display: none;
}
@media (max-width: 1200px) {
  .header .mega-menu__hide {
    top: 300%;
  }
}
@media (max-width: 990px) {
  .header .mega-menu__hide {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    top: 0;
    border-radius: 0;
    background: transparent;
  }
}
.header .mega-list__first {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  margin: 0;
}
@media (max-width: 990px) {
  .header .mega-list__first {
    padding-top: 10px;
    grid-gap: 10px;
  }
}
.header .mega-list__first li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: static;
}
@media (max-width: 990px) {
  .header .mega-list__first li {
    flex-direction: column;
    position: relative;
    align-items: start;
  }
}
.header .mega-list__first li a {
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 990px) {
  .header .mega-list__first li a {
    font-size: 20px;
    padding-left: 30px;
    line-height: 28px;
    font-weight: 500;
  }
}
.header .mega-list__first li p {
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 990px) {
  .header .mega-list__first li p {
    font-size: 20px;
    padding-left: 30px;
    line-height: 28px;
    font-weight: 500;
  }
}
.header .mega-list__first li img {
  margin: 0 10px 0 0;
}
@media (max-width: 990px) {
  .header .mega-list__first li img {
    position: absolute;
    left: 0;
    top: 3px;
  }
}
.header .mega-list__first li svg {
  margin-left: auto;
  cursor: pointer;
  transform: rotate(-90deg);
}
@media (max-width: 990px) {
  .header .mega-list__first li svg {
    transform: rotate(0);
    position: absolute;
    right: 0;
    top: 12px;
  }
}
.header .mega-menu__submenu {
  background: #fff;
  padding: 25px;
  width: 333px;
  box-sizing: border-box;
  position: absolute;
  left: 110%;
  top: 0;
  border-radius: 12px;
  display: none;
}
@media (max-width: 990px) {
  .header .mega-menu__submenu {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    top: 0;
    border-radius: 0;
    left: 0;
    background: transparent;
  }
}
.header .mega-list__second {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  margin: 0;
}
@media (max-width: 990px) {
  .header .mega-list__second {
    padding-top: 10px;
    grid-gap: 10px;
  }
}
.header .mega-list__second li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .header .mega-list__second li {
    align-items: start;
  }
}
.header .mega-list__second li a {
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 990px) {
  .header .mega-list__second li a {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
  }
}
.header .mega-list__second li p {
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 990px) {
  .header .mega-list__second li p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
  }
}
.header .mega-list__second li img {
  margin: 0 10px 0 0;
}

.bg-menu {
  position: fixed;
  background: #000;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  bottom: 0;
  width: 100vw;
  box-sizing: border-box;
  height: 100vh;
}
@media (max-width: 990px) {
  .bg-menu {
    display: none;
    visibility: hidden;
  }
}

.bg-menu-active {
  opacity: 0.3;
  visibility: visible;
}
@media (max-width: 990px) {
  .bg-menu-active {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}

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