:root {
  --green: #42a53b;
  --blue: #0677ec;
  --yellow: #ffd601;
  --magenta: #e4097f;
  --violet: #34358c;
  --white: #fff;
  --dark: #343d42;
  --grey: #869aa5;
  --light: #e3eef4;
  --content: rgba(52, 61, 66, 0.7);
  --orange: #f07c00;
  --font-family: "Nunito", sans-serif;
  --second-family: "Arial", sans-serif;
  --transition: all 0.3s;
}

.header-geo {
  display: grid;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  gap: 16px;
  grid-template-columns: auto 1fr;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: var(--dark);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-geo:hover {
  color: var(--blue);
}

.header-geo__icon {
  width: 17px;
  height: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-geo__icon svg {
  width: 100%;
  height: auto;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-geo__link {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: inherit;
  font-size: inherit;
}

.header-geo__link:hover {
  color: var(--blue);
}

.header-phone {
  display: grid;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: auto 1fr;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 14px;
  color: var(--dark);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-phone:hover {
  color: var(--blue);
}

@media (max-width: 1280px) {
  .header-phone {
    gap: 12px;
    font-size: 13px;
  }
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
}

.header-logo__link {
  display: block;
  text-decoration: none;
}

.header-logo__image {
  display: block;
}

.header-logo__image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.personal-account-link {
  display: grid;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.personal-account-link span {
  color: inherit;
  font-size: inherit;
}

.personal-account-link:hover {
  color: var(--blue);
}

@media (max-width: 1280px) {
  .personal-account-link {
    grid-template-columns: 1fr;
  }

  .personal-account-link__text {
    display: none;
  }
}

.header-search__body {
  display: grid;
  width: 100%;
}

.header-search__show-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.header-search__grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto auto;
}

.header-search__button-sbmt .btn {
  height: 40px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 10px 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
}

.header-search__field {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(52, 53, 140, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.header-search__field input {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  outline: none;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: rgba(134, 154, 165, 0.7);
  padding: 6px 24px;
}

.header-search__field input ::-webkit-input-placeholder {
  color: inherit;
  font-size: inherit;
}

.header-search__field input ::-moz-placeholder {
  color: inherit;
  font-size: inherit;
}

.header-search__field input :-ms-input-placeholder {
  color: inherit;
  font-size: inherit;
}

.header-search__field input ::-ms-input-placeholder {
  color: inherit;
  font-size: inherit;
}

.header-search__field input ::placeholder {
  color: inherit;
  font-size: inherit;
}

.user-navigation {
  display: grid;
  max-width: 100%;
  gap: 16px;
  grid-template-columns: 1fr auto;
}

.user-navigation__account {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.user-navigation__show-search {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.user-navigation__burder {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: none;
}

@media (max-width: 1200px) {
  .user-navigation {
    grid-template-columns: repeat(3, 1fr);
  }

  .user-navigation__burder {
    display: block;
  }

  .header__burger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
  }

  .header__burger::before {
    content: "";
    display: block;
    background: #34358c;
    opacity: 0.1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .header__burger-line {
    width: 24px;
    height: 2px;
    background-color: #34358c;
    border-radius: 100px;
  }
}

.create-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  padding: 0;
  margin: 0;
}

.create-icon::before {
  content: "";
  display: block;
  background: var(--magenta);
  opacity: 0.1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.create-icon svg {
  width: 16px;
  height: auto;
  display: block;
}

.create-icon:hover::before {
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
}

.create-icon--mod::before {
  background: #ee7d00;
  opacity: 0.1;
}

.create-icon--mod-2::before {
  background: var(--blue);
  opacity: 0.1;
}

.menu-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 50%;
}

.menu-button::before {
  content: "";
  background-color: var(--violet);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 0;
  opacity: 0.1;
  border-radius: 50%;
}

.menu-button span,
.menu-button span::after,
.menu-button span::before {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--violet);
  z-index: 2;
  border-radius: 25%;
}

.menu-button span::after,
.menu-button span::before {
  position: absolute;
}

.menu-button span::after,
.menu-button span::before {
  content: "";
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-button span::before {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  width: 24px;
}

.menu-button span::after {
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
  width: 24px;
}

.menu-button:hover::before {
  top: -4px;
  bottom: -4px;
  right: -4px;
  left: -4px;
}

.menu-button.active span {
  background-color: transparent !important;
}

.menu-button.active span:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-button.active span:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-mob-contacts {
  margin-bottom: 20px;
}

.header-mob-contacts__grid {
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(3, auto);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.icon-social {
  fill: var(--color-theme-main);
}

.icon-social--insta {
  fill: rgb(228, 9, 127);
}

.icon-social--vk {
  fill: #0677EC;
}

.header-buttons__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 380px;
  width: 100%;
}

.header-buttons .btn {
  text-align: center;
  height: 36px;
}

.header__grid {
  position: relative;
}

.header__group-top {
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 2fr 2fr 4fr 2fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-inline: 24px;
}

.header .header-logo {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.header__group-bottom {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid rgba(227, 238, 244, 0.4745098039);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-inline: 24px;
}

.header__user-navigation {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
}

.header__search {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 10px;
  background-color: #ffffff;
}

.header__nav {
  padding: 0;
  border-right: none;
}

@media (max-width: 1280px) {
  .header__group-top {
    grid-template-columns: 2fr 2fr 4fr 2fr;
    padding-inline: 16px;
    gap: 12px;
  }

  .header__group-bottom {
    padding-inline: 16px;
    gap: 12px;
  }

  .header__search {
    left: 16px;
    right: 16px;
  }

  .header__address {
    display: none;
  }

  .header__nav-list {
    margin: 0 -10px !important;
  }
}

@media (max-width: 1200px) {
  .header__navigation {
    display: none;
  }

  .header__grid {
    padding-inline: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
    display: grid;
    gap: 24px 16px;
    grid-template-columns: 1fr auto auto;
  }

  .header__group-top {
    display: contents;
  }

  .header__group-bottom {
    display: contents;
  }

  .header__logo-one {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header__logo-two {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .header__logo-two .header-logo__image {
    max-width: 212px;
  }

  .header__user-navigation {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header__tel {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .header__buttons {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    grid-column: span 2;
    max-width: 100%;
    margin-left: auto;
    padding: 0;
  }

  .header__buttons .btn {
    max-width: 100%;
    width: 100%;
  }

  .header__search {
    left: 16px;
    right: 72px;
    bottom: auto;
    top: 12px;
  }
}

@media (max-width: 767px) {
  .header__tel {
    display: none;
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }

  .header__address {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }

  .header__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .header__buttons {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    max-width: 100%;
    width: 100%;
    grid-column: initial;
  }

  .header__user-navigation {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
  }

  .header-buttons__grid {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    width: 100%;
  }

  .header__buttons .header-buttons .btn {
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-size: 10px;
    padding: 5px;
    text-align: center;
    height: 40px;
  }

  .header__buttons .header-buttons * {
    font-size: 8px !important;
    line-height: 1.5 !important;
    text-wrap: balance;
    text-align: center;
  }

  .header .container {
    padding: 0 5px;
  }

  .header .user-navigation {
    gap: 10px;
  }

  .header .header-buttons {
    margin-right: -16px;
  }

  .header__logo-two .header-logo__image {
    max-width: 100%;
  }

  .header__logo-one .header-logo__image {
    max-width: 100%;
  }

  .header__search {
    left: 10px;
    right: 60px;
    bottom: 12px;
    top: auto;
  }

  .header__search .btn span {
    display: none;
  }

  .header__search .btn .btn__icon {
    display: block;
  }

  .header-search__button-sbmt .btn {
    max-width: initial;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    grid-template-columns: initial;
    width: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-search__col:has(.header-search__field) {
    margin-right: -49px;
  }

  .header-search__field input {
    font-size: 16px;
  }

  .header__grid {
    padding-inline: 10px;
  }
}

.header-mob {
  z-index: 999999;
  height: 88svh;
}

.header-mob__top {
  padding-bottom: 16px;
}

.header-mob__top-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 212px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.header-mob__socials {
  margin-bottom: 0;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, auto);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.header-mob__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mob__social-link .icon-social {
  width: 100%;
  height: auto;
}

.header-mob .header-mob__top .header-mob__buttons {
  display: none;
}

.header-mob__middle {
  margin: 0 !important;
}

@media (max-width: 767px) {
  .header-mob__wrap {
    padding: 16px 10px;
  }

  .header-mob__bottom .header-mob__buttons {
    display: none;
  }

  .header-mob__top .header-mob__buttons {
    display: grid !important;
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
    margin-right: -10px;
  }

  .header-mob__top .header-mob__buttons .btn {
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-size: 10px;
    padding: 5px;
    text-align: center;
  }

  .header-mob__top .header-mob__buttons .btn * {
    font-size: 8px !important;
    line-height: 1.5 !important;
    text-wrap: balance;
    text-align: center;
  }

  .header-mob__top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }

  .header-mob .user-navigation {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }

  .header-mob-contacts__grid {
    gap: 10px;
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.header__search {
  display: none;
  width: 0;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.header-search-is-active .header__search {
  display: block;
  width: initial;
  opacity: 1;
}

.header-search-is-active .user-navigation .user-navigation__show-search {
  opacity: 0;
}

.header-mob .header__search {
  position: absolute;
  top: 15px;
  right: 70px;
  display: none;
  opacity: 0;
  visibility: hidden;
  width: 0;
}

.header-search-mob-is-active .header-mob .header__search {
  visibility: initial;
  display: block;
  width: initial;
  opacity: 1;
}

@media (max-width: 767px) {
  .header-mob .header__search {
    top: 61px;
    right: 59px;
    padding: 4px 0;
    background-color: #fff;
    height: 50px;
  }
}