@charset "UTF-8";
.header {
  position: relative;
  z-index: 99;
}
.header .container {
  padding: 12px 0;
}
.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 990px) {
  .header__logo {
    max-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__logo img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  width: auto;
}
.header__nav ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  padding: 0 15px;
  margin: 0;
}
@media (max-width: 990px) {
  .header__nav ul {
    padding: 0;
    flex-direction: column;
  }
}
.header__nav li {
  position: relative;
  padding: 0 15px;
}
@media (max-width: 990px) {
  .header__nav li {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: none;
  }
}
.header__nav li:hover .sub-menu {
  display: grid;
}
.header__nav li:last-child {
  border: none;
}
.header__nav a {
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .header__nav a {
    font-size: 20px;
  }
}
.header__nav .menu-item-has-children {
  padding-right: 25px;
  position: relative;
}
.header__nav .menu-item-has-children::before {
  content: "›";
  position: absolute;
  right: 0;
  top: 0;
  height: 22px;
  width: 22px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  pointer-events: none;
}
@media (max-width: 990px) {
  .header__nav .menu-item-has-children::before {
    font-size: 42px;
    height: 35px;
    width: 35px;
    top: 4px;
  }
}
.header__nav .sub-menu {
  position: absolute;
  display: none;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  padding: 10px;
  left: 5px;
}
@media (max-width: 990px) {
  .header__nav .sub-menu {
    position: static;
    padding: 0;
    margin-top: 10px;
    left: 0;
  }
}
.header__nav .sub-menu li {
  padding: 0;
  margin: 0;
  border: none;
}
.header__nav .sub-menu a {
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.header__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
}
.header__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 990px) {
  .header__controls {
    margin-left: auto;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 990px) {
  .header__actions {
    gap: 6px;
  }
}
.header__lang {
  position: relative;
  flex-shrink: 0;
}
.header__lang-toggle, .header__lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 35px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: #fff;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .header__lang-toggle, .header__lang-current {
    min-height: 32px;
    padding: 4px 8px;
    gap: 4px;
  }
}
.header__lang-current {
  cursor: default;
}
.header__lang-toggle:hover, .header__lang.is-open .header__lang-toggle {
  border-color: rgba(0, 0, 0, 0.25);
}
.header__lang-icon {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
@media (max-width: 990px) {
  .header__lang-icon {
    width: 18px;
    height: 18px;
  }
}
.header__lang-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 990px) {
  .header__lang-label {
    font-size: 12px;
  }
}
.header__lang-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform 0.3s;
}
.header__lang.is-open .header__lang-arrow {
  transform: rotate(180deg);
}
.header__lang-list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 50;
  min-width: 100%;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.2s;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .header__lang-list {
    right: auto;
    left: 0;
  }
}
.header__lang.is-open .header__lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__lang-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  background-color: #fff;
  transition: background 0.2s;
}
@media (max-width: 990px) {
  .header__lang-link {
    font-size: 13px;
    padding: 8px 10px;
  }
}
.header__lang-link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.header__btn-first {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  height: 35px;
  max-width: 170px;
  width: 100%;
  min-width: 110px;
  box-sizing: border-box;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .header__btn-first {
    font-size: 14px;
    padding: 6px 4px;
    min-width: 90px;
  }
}
.header__btn-first:hover {
  box-shadow: inset 0px -9px 12px 0px rgba(0, 0, 0, 0.2);
}
.header__btn-second {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  height: 35px;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s;
}
@media (max-width: 990px) {
  .header__btn-second {
    font-size: 14px;
    padding: 6px 4px;
    min-width: 90px;
  }
}
.header__btn-second:hover {
  box-shadow: inset 0px -9px 12px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 990px) {
  .header nav {
    position: fixed;
    right: 0;
    top: 0;
    left: 0;
    z-index: 200;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    transform: translateX(-120%);
    transition: 0.3s;
  }
}
.header .call-menu {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: #000;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .header .call-menu {
    display: flex;
  }
}
.header .call-menu img {
  height: 25px;
  width: 25px;
  display: block;
}
.header .close-menu {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: #000;
  cursor: pointer;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .header .close-menu {
    display: flex;
    margin: 10px 10px 20px auto;
  }
}
.header .close-menu img {
  height: 25px;
  width: 25px;
  display: block;
}
.header .active-menu {
  transform: translateX(0);
  opacity: 1;
}

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