@media (max-width: 990px) {
  .header {
    position: relative;
  }
}
.header__wrap {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 125px 1fr 450px;
  grid-gap: 20px;
  align-items: center;
}
@media (max-width: 1280px) {
  .header__wrap {
    grid-template-columns: 125px 1fr 300px;
  }
}
@media (max-width: 990px) {
  .header__wrap {
    grid-template-columns: 125px 40px 1fr 30px;
  }
}
@media (max-width: 576px) {
  .header__wrap {
    grid-template-columns: 125px 1fr 40px;
    grid-gap: 15px 10px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 990px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    z-index: 99;
  }
}
.header__nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.header__nav li {
  margin-right: 10px;
  position: relative;
}
@media (max-width: 990px) {
  .header__nav li {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}
.header__nav li:hover ul {
  opacity: 1;
  pointer-events: auto;
}
.header__nav li ul {
  left: 0;
  top: 125%;
  position: absolute;
  background: #fff;
  display: block;
  padding: 5px;
  border-radius: 6px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1019607843);
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 990px) {
  .header__nav li ul {
    opacity: 1;
    top: 0;
    position: relative;
    display: none;
    pointer-events: auto;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
    background: transparent;
  }
}
.header__nav li ul::after {
  content: "";
  top: -10px;
  position: absolute;
  width: 100%;
  height: 12px;
  left: 0;
  display: block;
}
@media (max-width: 990px) {
  .header__nav li ul::after {
    display: none;
  }
}
.header__nav li ul .arrow_mob {
  right: 0;
  transform: rotate(-90deg);
  top: 8px;
  pointer-events: none;
}
@media (max-width: 990px) {
  .header__nav li ul .arrow_mob {
    transform: rotate(0);
    top: 4px;
    pointer-events: auto;
  }
}
.header__nav li ul li {
  margin: 0 0 2.5px 0;
  padding-bottom: 2.5px;
  position: static;
  border-bottom: 1px solid #000;
}
@media (max-width: 990px) {
  .header__nav li ul li {
    margin: 0 0 5px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
  }
}
.header__nav li ul a {
  color: #000;
}
@media (max-width: 990px) {
  .header__nav li ul a {
    color: #fff;
  }
}
.header__nav li ul a:hover {
  color: #000;
}
@media (max-width: 990px) {
  .header__nav li ul a:hover {
    color: #fff;
  }
}
.header__nav li ul li:last-child {
  border: none;
  margin-bottom: 0;
}
.header__nav a {
  font-size: 16px;
  font-weight: 500;
}
.header__nav .arrow_mob {
  position: absolute;
  height: 15px;
  width: 15px;
  right: -17px;
  top: 4px;
}
@media (max-width: 1200px) {
  .header__nav .arrow_mob {
    position: absolute;
    height: 10px;
    width: 10px;
    right: -10px;
    top: 7px;
  }
}
@media (max-width: 990px) {
  .header__nav .arrow_mob {
    right: 0;
    height: 15px;
    width: 15px;
    top: 4px;
  }
}
.header__nav .arrow_mob::after {
  content: "";
  background: url("../img/arr-menu.svg");
  background-size: 15px 15px;
  height: 15px;
  width: 15px;
  transition: 0.3s;
  display: block;
}
@media (max-width: 1200px) {
  .header__nav .arrow_mob::after {
    background-size: 10px 10px;
    height: 10px;
    width: 10px;
  }
}
@media (max-width: 990px) {
  .header__nav .arrow_mob::after {
    background-size: 15px 15px;
    height: 15px;
    width: 15px;
  }
}
.header__nav .arr_active::after {
  transform: rotate(180deg);
}
.header__btn {
  margin-left: auto;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
}
@media (max-width: 990px) {
  .header__btn {
    justify-content: flex-end;
  }
}
@media (max-width: 576px) {
  .header__btn {
    margin: 0;
    grid-column-start: 1;
    grid-column-end: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    justify-content: center;
  }
}
.header__btn a {
  margin-left: 5px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .header__btn a {
    font-size: 14px;
    padding: 8px;
    width: 140px;
  }
}
@media (max-width: 576px) {
  .header__btn a {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.menu {
  display: none;
  cursor: pointer;
}
@media (max-width: 990px) {
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .menu {
    grid-row-start: 1;
    grid-column-start: 4;
    margin-left: auto;
  }
}

.widget_mslswidget {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 25px;
  border-radius: 6px;
  z-index: 999;
}
@media (max-width: 576px) {
  .widget_mslswidget {
    grid-column-start: 3;
  }
}
.widget_mslswidget a {
  display: flex;
  align-items: center;
  justify-content: start;
  color: #fff;
  padding: 5px 10px;
  white-space: nowrap;
  position: relative;
  z-index: 9;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
}
.widget_mslswidget img {
  height: 14px;
  width: 20px;
}
.widget_mslswidget .current_language {
  order: -1;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 9;
  transition: none;
}
.widget_mslswidget .active-lang {
  opacity: 1;
  transition: none;
  pointer-events: auto;
}
.widget_mslswidget .active-lang::after {
  content: "";
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  top: 0;
  right: 0;
  position: absolute;
  bottom: 0;
  opacity: 0.9;
  display: block;
  z-index: -1;
}

.lang-switcher {
  display: none !important;
}

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