@charset "UTF-8";
.mobile-menu {
  display: none;
}

header {
  border-bottom: 1px solid var(--color-text-adv);
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
header .header-top {
  background: var(--color-bg-adv);
  position: relative;
}
header .header-top .header-top-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .header-top .header-top-wrapper .contacts-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
header .header-top .header-top-wrapper .contacts-top .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
header .header-top .header-top-wrapper .contacts-top .socials .social-item {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all 0.3s;
}
header .header-top .header-top-wrapper .contacts-top .socials .social-item.item-tg img {
  width: 25px;
  height: 25px;
}
header .header-top .header-top-wrapper .contacts-top .socials .social-item.item-wa img {
  width: 25px;
  height: 25px;
}
header .header-top .header-top-wrapper .contacts-top .socials .social-item:hover {
  background: transparent;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
header .header-top .header-top-wrapper .contacts-top .phones {
  position: relative;
}
header .header-top .header-top-wrapper .contacts-top .phones .main-phone {
  font-weight: 600;
  cursor: pointer;
  color: var(--color-link);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
}
header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown {
  top: -10px;
  z-index: -1;
  opacity: 0;
  position: absolute;
  right: -10px;
  background: white;
  padding: 10px;
  border-radius: 5px;
  min-width: 210px;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown .phone-dropdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1, header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2 {
  font-family: "Montserrat Bold";
  cursor: pointer;
  text-decoration: none;
  position: relative;
  margin-bottom: 5px;
  white-space: nowrap;
}
header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown .phone-dropdown-wrapper .btn {
  width: calc(100% - 40px);
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .header-top .header-top-wrapper .contacts-top .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field label {
  font-size: 0.8rem;
  color: var(--color-text-gray);
}
header .header-top .header-top-wrapper .contacts-top .phones:hover {
  color: var(--color-link-hover);
}
header .header-top .header-top-wrapper .contacts-top .phones:hover .phone-dropdown {
  z-index: 1000;
  opacity: 1;
}
header .header-main {
  background: var(--color-white);
}
header .header-main .header-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header .header-main .header-wrapper .header-logo {
  height: 50px;
  width: auto;
  position: relative;
}
header .header-main .header-wrapper .header-logo a {
  width: 100%;
  position: relative;
}
header .header-main .header-wrapper .header-logo a img {
  height: 50px;
  width: auto;
  object-fit: cover;
}
header .header-main .header-wrapper .header-slogan {
  max-width: 15%;
  font-size: 0.65rem;
}
header .header-main .header-wrapper .megamenu-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  transition: all 0.3s;
}
header .header-main .header-wrapper .megamenu-btn svg {
  height: 20px;
  fill: white;
  transition: all 0.3s;
}
header .header-main .header-wrapper .megamenu-btn:hover, header .header-main .header-wrapper .megamenu-btn.active {
  background: white;
  color: #424242;
}
header .header-main .header-wrapper .megamenu-btn:hover svg, header .header-main .header-wrapper .megamenu-btn.active svg {
  fill: #424242;
}
header .header-main .header-wrapper .top-search {
  flex-grow: 1;
  position: relative;
  margin-right: 30px;
}
header .header-main .header-wrapper .top-search input {
  box-shadow: none;
  border: 1px solid #dadada;
  height: 30px;
  padding: 6px 14px;
  background: #fff;
  font-size: 16px;
  line-height: calc(1em + 4px);
  border-radius: 8px;
  position: relative;
  width: 100%;
  outline: none;
}
header .header-main .header-wrapper .top-search .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: transparent;
  position: absolute;
  right: -30px;
  top: 0;
  padding: 0 10px;
  transition: all 0.3s;
  cursor: pointer;
}
header .header-main .header-wrapper .top-search .search-btn svg {
  width: 30px;
}
header .header-main .header-wrapper .top-search:hover input, header .header-main .header-wrapper .top-search:focus input {
  outline: 2px solid #424242;
}
header .header-main .header-wrapper .top-search:hover .search-btn, header .header-main .header-wrapper .top-search:focus .search-btn {
  background: #424242;
}
header .header-main .header-wrapper .top-search:hover .search-btn svg, header .header-main .header-wrapper .top-search:focus .search-btn svg {
  fill: white;
}
header .header-menu .header-menu-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
header .header-menu .header-menu-wrapper .header-megamenu .megamenu-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  transition: all 0.3s;
}
header .header-menu .header-menu-wrapper .header-megamenu .megamenu-btn svg {
  height: 20px;
  fill: white;
  transition: all 0.3s;
}
header .header-menu .header-menu-wrapper .header-megamenu .megamenu-btn:hover, header .header-menu .header-menu-wrapper .header-megamenu .megamenu-btn.active {
  color: #424242;
}
header .header-menu .header-menu-wrapper .header-megamenu .megamenu-btn:hover svg, header .header-menu .header-menu-wrapper .header-megamenu .megamenu-btn.active svg {
  fill: #424242;
}
header .header-menu .header-menu-wrapper .header-menu-advanced {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
header .header-menu .header-menu-wrapper .header-menu-advanced .menu-item {
  position: relative;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-menu .header-menu-wrapper .header-menu-advanced .menu-item > a {
  transition: all 0.3s;
  color: #424242;
  text-decoration: none;
  font-size: 1.1em;
}
header .header-menu .header-menu-wrapper .header-menu-advanced .menu-item .dropdown-items {
  opacity: 0;
  height: 0;
  position: absolute;
  top: 100%;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  z-index: -1;
  background: white;
}
header .header-menu .header-menu-wrapper .header-menu-advanced .menu-item .dropdown-items .dropdown-item {
  padding: 5px 15px;
  color: #424242;
  transition: all 0.3s;
  white-space: nowrap;
  text-decoration: none;
  width: calc(100% - 30px);
  position: relative;
  display: block;
}
header .header-menu .header-menu-wrapper .header-menu-advanced .menu-item .dropdown-items .dropdown-item:hover {
  background: var(--color-link-hover);
  color: white;
}
header .header-menu .header-menu-wrapper .header-menu-advanced .menu-item:hover .dropdown-items {
  opacity: 1;
  height: fit-content;
  z-index: 2;
  transition: all 0.3s;
}
header .mega-menu {
  position: absolute;
  z-index: -1;
  background: #f8f8f8;
  width: calc(100% - 64px);
  -webkit-box-shadow: 0px 5px 8px 0px rgba(69, 69, 69, 0.2);
  -moz-box-shadow: 0px 5px 8px 0px rgba(69, 69, 69, 0.2);
  box-shadow: 0px 5px 8px 0px rgba(69, 69, 69, 0.2);
  display: none;
  height: 0;
  top: 100%;
  border: 1px solid #ccc;
}
header .mega-menu.active {
  display: block;
  z-index: 100;
  height: fit-content;
}
header .mega-menu .mega-menu-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  padding: 20px;
}
header .mega-menu .mega-menu-wrapper .aside {
  width: 250px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header .mega-menu .mega-menu-wrapper .aside .mega-menu-categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header .mega-menu .mega-menu-wrapper .aside .mega-menu-categories .mega-menu-category {
  padding: 5px 12px;
  font-weight: 600;
  font-size: 1em;
  color: var(--color-link);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  width: calc(100% - 24px);
  text-decoration: none;
}
header .mega-menu .mega-menu-wrapper .aside .mega-menu-categories .mega-menu-category:hover, header .mega-menu .mega-menu-wrapper .aside .mega-menu-categories .mega-menu-category.active {
  background: var(--color-link);
  color: white;
}
header .mega-menu .mega-menu-wrapper .aside .mega-menu-categories .mega-menu-category.active:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 13px solid transparent;
  border-right-color: white;
  border-left: 0;
  margin-top: -13px;
  margin-left: -13px;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content {
  background: white;
  flex-grow: 1;
  border-radius: 10px;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  height: 100%;
  flex-wrap: wrap;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper .content-block {
  width: calc(25% - 15px);
  height: calc(50% - 50px);
  overflow-y: hidden;
  display: block;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper .content-block .block-items {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper .content-block .block-items .items-title {
  font-weight: 600;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper .content-block .block-items .items-list {
  flex-grow: 1;
  position: relative;
  overflow-y: auto;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper .content-block .block-items .items-list .items-list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper .content-block .block-items .items-list .items-list-wrapper .content-block-item {
  text-decoration: none;
  color: var(--color-link);
}
header .mega-menu .mega-menu-wrapper .mega-menu-content .mega-menu-content-wrapper .content-block .block-items .items-list .items-list-wrapper .content-block-item:hover {
  color: var(--color-link-hover);
}
header.fixed {
  top: 0;
  padding-bottom: 10px;
  position: fixed;
  z-index: 10;
  width: 100%;
  background: white;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
header.fixed .header-top {
  display: none;
}
header.fixed .header-main {
  margin-top: 10px;
  margin-bottom: 0;
}
header.fixed .header-main .header-logo {
  height: 35px !important;
}
header.fixed .header-main .header-logo img {
  height: 35px !important;
}
header.fixed .header-main .header-slogan {
  display: none;
}
header.fixed .header-main .megamenu-btn span {
  display: none;
}
header.fixed .header-main .top-btns {
  gap: 0;
}
header.fixed .header-main .top-btns .btn-with-icon {
  width: 50px;
}
header.fixed .header-main .top-btns .btn-with-icon .btn-text {
  display: none;
}
header.fixed #topBasket:hover .basket-modal {
  max-height: calc(100vh - 80px);
}
header #topBasket {
  position: relative;
}
header #topBasket:hover .basket-modal {
  max-height: calc(100vh - 170px);
}
header #topBasket .basket-qty {
  position: absolute;
  right: 15px;
  top: 2px;
  background: white;
  border: 1px solid #424242;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: 0.8em;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
  display: flex;
}
header #topBasket .basket-modal {
  display: none;
}
header #topBasket:hover .basket-modal {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  max-width: 500px;
  width: 500px;
  z-index: 1500;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: white;
  border-top: 1px solid #ccc;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}
header #topBasket:hover .basket-modal .basket-wrapper {
  display: flex;
  flex-direction: column;
  padding: 10px;
  height: inherit;
  overflow-y: hidden;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow-y: auto;
  max-height: 300px;
  position: relative;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-image {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
  overflow: hidden;
  position: relative;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc .desc-title {
  font-size: 0.9em;
  font-weight: 600;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc .desc-props {
  margin-top: 5px;
  font-size: 0.7em;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc .desc-props .desc-prop {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc .desc-props .desc-prop .prop-title {
  color: #8f8f8f;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc .desc-props .desc-prop .prop-value {
  font-weight: 600;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc .desc-props .desc-prop .prop-valuea {
  text-decoration: none;
  color: var(--color-link);
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-desc .desc-props .desc-prop .prop-valuea:hover {
  color: var(--color-link-hover);
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-prices {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-right: 30px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-prices .basket-item-price {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-prices .basket-item-price .price-item {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  white-space: nowrap;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-prices .basket-item-price .price-item .price-measure {
  font-size: 0.7em;
  color: #666666;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-prices .basket-item-price .price-item.old-price .price-value {
  font-size: 0.9em;
  color: #444444;
  font-weight: 600;
  text-decoration: line-through;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-prices .basket-item-price .price-item.main-price .price-value {
  font-size: 1em;
  color: black;
  font-weight: 600;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-prices .basket-item-price .price-item.pack-price .price-value {
  font-size: 0.9em;
  color: black;
  font-weight: 600;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-actions .action-del {
  width: 15px;
  height: 15px;
  cursor: pointer;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-actions .action-del svg {
  width: auto;
  height: 100%;
  fill: #222222;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-actions .action-del svg:hover {
  fill: var(--color-link-hover);
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-items .basket-item .basket-item-actions .block-qty input {
  width: 40px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-totals .totals-qty, header #topBasket:hover .basket-modal .basket-wrapper .basket-totals .totals-summ {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-totals .totals-qty .totals-title {
  font-size: 1.1em;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-totals .totals-qty .totals-value {
  font-size: 1.1em;
  font-weight: 600;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-totals .totals-summ .totals-title {
  font-size: 1.3em;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-totals .totals-summ .totals-value {
  font-size: 1.3em;
  font-weight: 600;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-btns {
  width: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
header #topBasket:hover .basket-modal .basket-wrapper .basket-btns .btn {
  flex-grow: 1;
  justify-content: center;
}

@media screen and (min-width: 1400px) {
  header:not(.fixed) .phone-icon {
    display: none;
  }
  header:not(.fixed) .header-main .header-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header:not(.fixed) .header-main .header-wrapper .contacts-main {
    display: none;
  }
  header.fixed .contacts-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  header.fixed .contacts-main .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  header.fixed .contacts-main .socials .social-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s;
  }
  header.fixed .contacts-main .socials .social-item.item-tg img {
    width: 25px;
    height: 25px;
  }
  header.fixed .contacts-main .socials .social-item.item-wa img {
    width: 25px;
    height: 25px;
  }
  header.fixed .contacts-main .socials .social-item:hover {
    background: transparent;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header.fixed .contacts-main .phones {
    position: relative;
  }
  header.fixed .contacts-main .phones .main-phone {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
  }
  header.fixed .contacts-main .phones .main-phone .phone-icon {
    display: none;
  }
  header.fixed .contacts-main .phones .phone-dropdown {
    top: -1000px;
    z-index: -1;
    opacity: 0;
    position: absolute;
    right: -10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 210px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: -1;
  }
  header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1, header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2 {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    margin-bottom: 5px;
    white-space: nowrap;
  }
  header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1:hover, header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2:hover {
    color: var(--color-link-hover);
  }
  header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .btn {
    width: calc(100% - 40px);
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  header.fixed .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field label {
    font-size: 0.8rem;
    color: #cccccc;
  }
  header.fixed .contacts-main .phones:hover {
    color: var(--color-link-hover);
  }
  header.fixed .contacts-main .phones:hover .phone-dropdown {
    z-index: 1000;
    top: -10px;
    opacity: 1;
  }
  header .header-top .main-phone .phone-icon {
    display: none;
  }
  header .header-main .contacts-main {
    display: none;
  }
  header .header-main .top-btns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  header .header-main .top-btns .btn-with-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    padding: 5px;
    width: 70px;
  }
  header .header-main .top-btns .btn-with-icon svg {
    height: 30px;
    width: auto;
  }
  header .header-main .top-btns .btn-with-icon .btn-text {
    text-decoration: none !important;
    color: #424242;
    font-size: 0.825em;
    transition: all 0.3s;
  }
  header .header-main .top-btns .btn-with-icon:hover {
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .top-btns .btn-with-icon:hover .btn-text {
    color: var(--color-link-hover);
  }
}
@media screen and (max-width: 1399px) {
  header:not(.fixed) .header-main .header-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header:not(.fixed) .header-main .header-wrapper .contacts-main {
    display: none;
  }
  header .header-top .main-phone .phone-icon {
    display: none;
  }
  header .header-main .top-btns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  header .header-main .top-btns .btn-with-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    padding: 5px;
    width: 70px;
  }
  header .header-main .top-btns .btn-with-icon svg {
    height: 30px;
    width: auto;
  }
  header .header-main .top-btns .btn-with-icon .btn-text {
    text-decoration: none !important;
    color: #424242;
    font-size: 0.825em;
    transition: all 0.3s;
  }
  header .header-main .top-btns .btn-with-icon:hover {
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .top-btns .btn-with-icon:hover .btn-text {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-left: auto;
  }
  header .header-main .contacts-main .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  header .header-main .contacts-main .socials .social-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s;
  }
  header .header-main .contacts-main .socials .social-item.item-tg img {
    width: 25px;
    height: 25px;
  }
  header .header-main .contacts-main .socials .social-item.item-wa img {
    width: 25px;
    height: 25px;
  }
  header .header-main .contacts-main .socials .social-item:hover {
    background: transparent;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .contacts-main .phones {
    position: relative;
  }
  header .header-main .contacts-main .phones .main-phone {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-link) !important;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
  }
  header .header-main .contacts-main .phones .main-phone .phone-icon {
    display: none;
  }
  header .header-main .contacts-main .phones .phone-dropdown {
    top: -1000px;
    z-index: -1;
    opacity: 0;
    position: absolute;
    right: -10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 210px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: -1;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2 {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    margin-bottom: 5px;
    white-space: nowrap;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1:hover, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .btn {
    width: calc(100% - 40px);
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field label {
    font-size: 0.8rem;
    color: #cccccc;
  }
  header .header-main .contacts-main .phones:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones:hover .phone-dropdown {
    z-index: 1000;
    top: -10px;
    opacity: 1;
  }
}
@media screen and (max-width: 1199px) {
  header:not(.fixed) .header-main .header-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header:not(.fixed) .header-main .header-wrapper .contacts-main {
    display: none;
  }
  header .header-main .header-slogan {
    display: none;
  }
  header .header-main .contacts-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-left: auto;
  }
  header .header-main .contacts-main .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  header .header-main .contacts-main .socials .social-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s;
  }
  header .header-main .contacts-main .socials .social-item.item-tg img {
    width: 25px;
    height: 25px;
  }
  header .header-main .contacts-main .socials .social-item.item-wa img {
    width: 25px;
    height: 25px;
  }
  header .header-main .contacts-main .socials .social-item:hover {
    background: transparent;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .contacts-main .phones {
    position: relative;
  }
  header .header-main .contacts-main .phones .main-phone {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
  }
  header .header-main .contacts-main .phones .phone-dropdown {
    top: -1000px;
    z-index: -1;
    opacity: 0;
    position: absolute;
    right: -10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 210px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: -1;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2 {
    font-weight: 600;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    margin-bottom: 5px;
    white-space: nowrap;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1:hover, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .btn {
    width: calc(100% - 40px);
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field label {
    font-size: 0.8rem;
    color: #cccccc;
  }
  header .header-main .contacts-main .phones:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones:hover .phone-dropdown {
    z-index: 1000;
    top: -10px;
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  header .header-top {
    display: none;
  }
  header .header-main .contacts-main {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-left: auto;
  }
  header .header-main .contacts-main .socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  header .header-main .contacts-main .socials .social-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s;
  }
  header .header-main .contacts-main .socials .social-item.item-tg img {
    width: 25px;
    height: 25px;
  }
  header .header-main .contacts-main .socials .social-item.item-wa img {
    width: 25px;
    height: 25px;
  }
  header .header-main .contacts-main .socials .social-item:hover {
    background: transparent;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .contacts-main .phones {
    position: relative;
  }
  header .header-main .contacts-main .phones .main-phone {
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
  }
  header .header-main .contacts-main .phones .phone-dropdown {
    top: -1000px;
    z-index: -1;
    opacity: 0;
    position: absolute;
    right: -10px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 210px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: -1;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2 {
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    margin-bottom: 5px;
    white-space: nowrap;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1:hover, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .btn {
    width: calc(100% - 40px);
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field label {
    font-size: 0.8rem;
    color: #cccccc;
  }
  header .header-main .contacts-main .phones:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones:hover .phone-dropdown {
    z-index: 1000;
    top: -10px;
    opacity: 1;
  }
  header .header-main .top-btns, header .header-main .top-search {
    display: none;
  }
  header .header-main .megamenu-btn {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  header .header-main .megamenu-btn span {
    display: none;
  }
  header .header-main .contacts-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-right: auto;
  }
  header .header-main .contacts-main .socials {
    gap: 10px;
  }
  header .header-main .contacts-main .phones {
    position: relative;
  }
  header .header-main .contacts-main .phones .main-phone {
    all: unset; /* Все стили элемента сбрасываются в ноль. */
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none !important;
    position: relative;
  }
  header .header-main .contacts-main .phones .main-phone .phone-number {
    display: none;
  }
  header .header-main .contacts-main .phones .main-phone .phone-icon {
    display: block;
    width: 30px;
    height: 30px;
  }
  header .header-main .contacts-main .phones .phone-dropdown {
    top: -1000px;
    z-index: -1;
    opacity: 0;
    position: absolute;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 5px;
    min-width: unset;
    width: fit-content;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: -1;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2 {
    all: unset; /* Все стили элемента сбрасываются в ноль. */
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    margin-bottom: 5px;
    white-space: nowrap;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-1:hover, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .phone-dropdown-2:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .btn {
    width: calc(100% - 40px);
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field label {
    font-size: 0.8rem;
    color: #cccccc;
  }
  header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field:last-child .field-text, header .header-main .contacts-main .phones .phone-dropdown .phone-dropdown-wrapper .top-contacts .contact-field:first-child .field-text {
    white-space: nowrap;
  }
  header .header-main .contacts-main .phones:hover {
    color: var(--color-link-hover);
  }
  header .header-main .contacts-main .phones:hover .phone-dropdown {
    z-index: 1000;
    top: -10px;
    opacity: 1;
  }
}

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