.Header {
  position: relative;
  flex-shrink: 0;
  z-index: 10;
}
@media (max-width: 1023px) {
  .Header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .Header + .Main {
    margin-top: 73px;
  }
}
.HeaderTop {
  padding: 20px 0;
  background: var(--bg-blue);
}
@media (max-width: 1023px) {
  .HeaderTop {
    padding: 16px 0;
    border-bottom: 1px solid #DDD;
    background: #fff;
  }
}
.HeaderTop__Inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.HeaderTop__Left {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .HeaderTop__Left {
    display: none;
  }
}
.HeaderTop__Logo {
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 1023px) {
  .HeaderTop__LogoImg {
    width: 175px;
    height: auto;
  }
}
.HeaderTop__Right {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 1279px) {
  .HeaderTop__Right {
    flex-direction: column-reverse;
    align-items: flex-end;
    row-gap: 14px;
  }
}
.HeaderTop__RightSocial {
  display: flex;
  column-gap: 12px;
  margin-right: 28px;
}
@media (max-width: 1279px) {
  .HeaderTop__RightSocial {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .HeaderTop__RightSocial {
    display: none;
  }
}
.HeaderTop__RightSocialItem svg {
  display: block;
}
.HeaderTop__RightControls {
  display: flex;
  align-items: center;
}
.HeaderBottom {
  padding: 8px 0;
  background: var(--primary);
}
@media (max-width: 1023px) {
  .HeaderBottom {
    display: none;
  }
}
.HeaderBottom__Inner {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
}
@media (max-width: 1279px) {
  .HeaderBottom__Inner {
    column-gap: 0;
  }
}
.HeaderMobile {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 16px;
  background: var(--primary);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.2s;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.HeaderMobile._active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.HeaderMobile__Social {
  display: flex;
  column-gap: 12px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.HeaderMobile__Social .HeaderTop__RightSocialItem {
  color: var(--white);
}
.HeaderMobile__Eye {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
@media (any-hover: hover) {
  .HeaderMobile__Eye {
    transition: 0.2s;
  }
  .HeaderMobile__Eye:hover {
    color: var(--gold);
  }
}
.HeaderMobile__Search {
  margin-bottom: 24px;
}
.HeaderMobile__Search .SearchInput {
  position: relative !important;
  width: 100% !important;
  overflow: visible !important;
}
.HeaderMobile__Search .SearchInput .Input._simple {
  background: #737D8D;
}
.HeaderMobile__Search .SearchInput .Input._simple .Input__Icon {
  order: -1;
}
.HeaderMobile__Search .SearchInput .Input._simple .Input__Input {
  padding-left: 8px;
  align-self: center;
}
.HeaderMobile__Search .SearchInput .Input._simple .Input__Input::placeholder {
  color: var(--white);
}
.HeaderMobile__Search .SearchInput .Input._simple .Input__Input:focus {
  padding-left: 16px;
}
.HeaderMobile__Search .SearchInput .Input._simple .Input__Input:focus ~ .Input__Icon {
  display: none;
}
.HeaderMobile__Search .SearchInput .Input._simple .Input__Input:focus ~ .ButtonBorder {
  display: flex;
}
.HeaderMobile__Search .ButtonBorder {
  display: none;
  height: 50px !important;
  background: var(--white);
  border-color: var(--white);
  margin: -1px 0;
}
.HeaderMobile__Search .ButtonBorder svg {
  width: 24px !important;
  height: 24px !important;
}
.HeaderMobile__Search .ButtonBorder svg path {
  stroke-width: 1.5 !important;
}
.HeaderMobile__Search .Input {
  border: 0;
  font-weight: 300;
}
.HeaderMobile__Search .Input__Label,
.HeaderMobile__Search .Input__Clear,
.HeaderMobile__Search .Input__Input {
  color: var(--white);
  font-weight: 300;
}
.Header .SearchInput {
  position: absolute;
  width: 0;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.Header._search-open .SearchInput {
  width: calc(50% - 250px);
}
@media (max-width: 1279px) {
  .Header._search-open .SearchInput {
    width: 100%;
  }
}
.Header .SearchInput .Input__Clear {
  right: 79px;
}
@media (max-width: 1279px) {
  .Header._search-open .HeaderTop__Logo,
  .Header._search-open .HeaderTop__Right {
    opacity: 0;
    pointer-events: none;
  }
}
@media (any-hover: hover) {
  .HeaderTop__Button {
    transition: 0.2s;
  }
  .HeaderTop__Button:hover {
    color: var(--gold);
  }
}
.HeaderTop__Search {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.HeaderTop__Language {
  position: relative;
}
.HeaderTop__LanguageBtn {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.HeaderTop__LanguageBtn svg {
  transition: 0.2s;
}
.HeaderTop__LanguageBtn._active svg {
  transform: rotate(180deg);
}
.HeaderTop__LanguageDropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: max-content;
  max-width: calc(100vw - 68px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #DDD;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.2s;
  z-index: 1;
}
.HeaderTop__LanguageDropdown._active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.HeaderTop__LanguageDropdownBtn {
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  color: var(--white) !important;
  border-radius: 5px;
  border: 1px solid #737D8D;
  background: #737D8D;
}
.HeaderTop__LanguageDropdownBtn._active {
  background: var(--primary);
  border-color: #DDD;
}
@media (any-hover: hover) {
  .HeaderTop__LanguageDropdownBtn {
    transition: 0.2s;
  }
  .HeaderTop__LanguageDropdownBtn:hover {
    background: var(--primary);
  }
}
.HeaderTop__Eye {
  display: flex;
  margin-left: 28px;
}
@media (any-hover: hover) {
  .HeaderTop__Eye {
    transition: 0.2s;
  }
  .HeaderTop__Eye:hover {
    color: var(--gold);
  }
}
@media (max-width: 1023px) {
  .HeaderTop__Eye {
    display: none;
  }
}
.HeaderTop__MenuBtn {
  width: 40px;
  height: 40px;
  margin-left: 12px;
  margin-right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .HeaderTop__MenuBtn {
    display: none;
  }
}
@media (any-hover: hover) {
  .HeaderTop__MenuBtn {
    transition: 0.2s;
    border-radius: 8px;
  }
  .HeaderTop__MenuBtn:hover {
    color: var(--gold);
    background: #F6F6F6;
  }
}
.HeaderTop__MenuBtn .menu-icon {
  transition: transform 0.3s ease;
}
.HeaderTop__MenuBtn .menu-icon__line {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.HeaderTop__MenuBtn._active .menu-icon__line.top {
  transform: translateY(4px) translateX(-4px) rotate(45deg);
}
.HeaderTop__MenuBtn._active .menu-icon__line.middle {
  opacity: 0;
}
.HeaderTop__MenuBtn._active .menu-icon__line.bottom {
  transform: translateY(-4px) translateX(-4px) rotate(-45deg);
}
.HeaderBottom .Container {
  position: relative;
}
@media (max-width: 1279px) {
  .HeaderBottom .Container {
    pointer-events: none;
  }
}
.HeaderBottom__Btn {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray);
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  z-index: 1;
  pointer-events: all;
}
.HeaderBottom__Btn._prev {
  left: 10px;
  top: 8px;
  box-shadow: -15px 0px 0px 14px var(--primary);
}
.HeaderBottom__Btn._prev:before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -15px;
  right: 0;
  left: -10px;
}
.HeaderBottom__Btn._next {
  right: 10px;
  top: 8px;
  box-shadow: 15px 0px 0px 14px var(--primary);
}
.HeaderBottom__Btn._next:before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: -15px;
  right: -10px;
  left: 0;
}
.HeaderBottom__Btn.swiper-button-disabled {
  display: none;
}
@media (max-width: 1279px) {
  .HeaderBottom__Inner {
    padding-bottom: 9999px;
    margin-bottom: -9999px;
    overflow: hidden;
    pointer-events: none;
  }
}
.HeaderBottom__Inner .swiper-wrapper {
  width: auto;
  max-width: 100%;
}
.HeaderBottom__Inner:not(.swiper-initialized) ~ .HeaderBottom__Btn {
  display: none;
}
.HeaderMenuItem {
  position: relative;
  flex-shrink: 0;
  width: auto;
  margin-right: 24px;
  pointer-events: all;
}
@media (max-width: 1279px) {
  .HeaderMenuItem {
    margin-right: 13px;
  }
}
.HeaderMenuItem:last-child {
  margin-right: 0;
}
.HeaderMenuItem__Link {
  display: flex;
  align-items: center;
  column-gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white) !important;
  font-size: 18px;
  font-weight: 300;
  line-height: 130%;
}
@media (any-hover: hover) {
  .HeaderMenuItem__Link {
    transition: 0.2s;
  }
}
.HeaderMenuItem__Link svg {
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .HeaderMenuItem__Link svg {
    transition: 0.2s;
  }
}
.HeaderMenuItem:hover .HeaderMenuItem__Link {
  background: rgba(115, 125, 141, 0.2);
}
.HeaderMenuItem:hover .HeaderMenuItem__Link svg {
  transform: rotate(180deg);
}
.HeaderMenuItem__Dropdown {
  position: absolute;
  width: max-content;
  max-width: 34.115vw;
  white-space: normal;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(221, 221, 221, 0.4);
  background: var(--white);
  box-shadow: 0px 2px 10px 2px rgba(22, 39, 65, 0.1);
}
@media (max-width: 1279px) {
  .HeaderMenuItem__Dropdown {
    max-width: 37vw;
  }
}
.HeaderMenuItem__DropdownItem {
  position: relative;
}
.HeaderMenuItem__DropdownItemLink {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  border-radius: 8px;
  color: var(--primary) !important;
}
.HeaderMenuItem__DropdownItemLink:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  width: 8px;
}
.HeaderMenuItem__DropdownItemLink:after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  width: 8px;
}
.HeaderMenuItem__DropdownItemLink svg {
  transform: rotate(-90deg);
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .HeaderMenuItem__DropdownItemLink {
    transition: 0.2s;
  }
  .HeaderMenuItem__DropdownItemLink:hover {
    background: var(--bg-gray);
  }
}
.HeaderMenuItem__DropdownItemChild {
  position: absolute;
  left: calc(100% + 8px);
  top: 0;
  width: max-content;
  max-width: 34.115vw;
  padding: 8px;
  white-space: normal;
  border-radius: 8px;
  border: 1px solid rgba(221, 221, 221, 0.4);
  box-shadow: 0px 2px 10px 2px rgba(22, 39, 65, 0.1);
  background: var(--white);
}
@media (max-width: 1279px) {
  .HeaderMenuItem__DropdownItemChild {
    max-width: 37vw;
  }
}
.HeaderMenuItem__DropdownItemChildLink {
  display: block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  border-radius: 8px;
  color: var(--primary) !important;
}
@media (any-hover: hover) {
  .HeaderMenuItem__DropdownItemChildLink {
    transition: 0.2s;
  }
  .HeaderMenuItem__DropdownItemChildLink:hover {
    background: var(--bg-gray);
  }
}
.HeaderMenuItem__Dropdown,
.HeaderMenuItem__DropdownItemChild {
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
}
.HeaderMenuItem:hover .HeaderMenuItem__Dropdown,
.HeaderMenuItem__DropdownItem:hover .HeaderMenuItem__DropdownItemChild {
  pointer-events: all;
  opacity: 1;
}
.HeaderMobileMenuItem {
  margin-bottom: 8px;
}
.HeaderMobileMenuItem__Link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 300;
  line-height: 130%;
  color: var(--white) !important;
  border-bottom: 1px solid var(--gray);
}
.HeaderMobileMenuItem__Link svg {
  transform: rotate(-90deg);
  transition: 0.2s;
}
.HeaderMobileMenuItem__Link._active svg {
  transform: rotate(0deg);
}
.HeaderMobileMenuItem__Dropdown {
  margin-top: 8px;
  padding: 8px 0;
  border-radius: 8px;
  background: rgba(115, 125, 141, 0.2);
}
.HeaderMobileMenuItem__DropdownItemLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 130%;
  color: var(--white) !important;
}
.HeaderMobileMenuItem__DropdownItemLink svg {
  transform: rotate(-90deg);
  transition: 0.2s;
}
.HeaderMobileMenuItem__DropdownItemLink._active svg {
  transform: rotate(0deg);
}
.HeaderMobileMenuItem__DropdownItemChild {
  margin: 0 6px;
  padding: 8px;
  border-radius: 5px;
  background: rgba(115, 125, 141, 0.2);
  box-shadow: 0px 2px 10px 2px rgba(22, 39, 65, 0.1);
}
.HeaderMobileMenuItem__DropdownItemChildLink {
  display: block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 130%;
  color: var(--white) !important;
}
