@media screen and (max-width: 1400px) {
  .mobil_none {
    display: none;
  }
  .select {
    border-radius: 5px;
    position: relative;
    display: block;
    min-width: 220px;
    width: 115%;
    max-width: 400px;
    margin-bottom: 5px;
    top: 37px;
    background-color: #f3f5f6;
  }

  .select__head {
    width: 95%;
    height: 36px;
    max-width: 100%;
    /* box-shadow: 0 0 1px rgba(0, 0, 0, 0.2); */
    /* border-radius: 5px; */
    padding: 10px 15px;
    font-size: 12px;
    line-height: 18px;
    color: rgba(66, 67, 72, 0.8);
    cursor: pointer;
  }

  .select__head::after {
    width: 10px;
    height: 6px;
    background: #fff
      url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.50495 5.78413L0.205241 1.25827C-0.0684138 0.970375 -0.0684138 0.503596 0.205241 0.215836C0.478652 -0.0719461 0.922098 -0.071946 1.19549 0.215837L5.00007 4.22052L8.80452 0.215953C9.07805 -0.0718292 9.52145 -0.0718292 9.79486 0.215953C10.0684 0.503736 10.0684 0.970492 9.79486 1.25839L5.49508 5.78425C5.35831 5.92814 5.17925 6 5.00009 6C4.82085 6 4.64165 5.928 4.50495 5.78413Z' fill='%23454F58'/%3E%3C/svg%3E%0A")
      no-repeat center / cover;
    position: absolute;
    right: 20px;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
    content: "";
    display: block;
    -webkit-transition: 0.2s ease-in;
    -o-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
  }

  .select__head.open::after {
    -webkit-transform: translateY(50%) rotate(180deg);
    -ms-transform: translateY(50%) rotate(180deg);
    transform: translateY(50%) rotate(180deg);
  }

  .select__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f3f5f6;
    font-size: 12px;
    /* border-radius: 10px; */
    margin-top: 5px;
    overflow-x: hidden;
    z-index: 100;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #424348;
    scrollbar-color: dark;
    scrollbar-width: thin;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    width: 100%;
  }

  .select__list::-webkit-scrollbar {
    width: 7px;
    background-color: #f8f9fa;
    padding: 8px;
  }

  .select__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #d9d9d9;
  }

  .select__list .select__item {
    position: relative;
    padding: 5px 15px;
    cursor: pointer;
    list-style-type: none;
    font-weight: 400;
    font-size: 12px;
    line-height: 19px;
    padding: 5px 15px;
  }

  .select__list .select__item:hover {
    /* background-color: rgba(224, 229, 231, 0.5); */
    color: #000;
  }
  .filter-mobile {
    display: block;
  }
  .back-button {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1230px) {
  .container {
    width: 992px;
  }
  .mobil_none {
    display: none;
  }
  .filter-mobile {
    display: block;
  }
  .header-menu__link {
    font-size: 11px;
  }
  .header-search__input {
    width: 187px;
  }
  .navigation-block__item {
    width: 179px;
  }
  .catalog-list__card {
    width: 218px;
  }
  .production-list__item {
    width: 49%;
  }
  .contacts-list__item {
    width: 23%;
  }
  .delivery-block__image {
    width: 288px;
  }
  .certificate-info {
    max-width: 385px;
  }
  .product-description {
    width: 370px;
  }
  .cart-list__info {
    width: 170px;
  }
  .price-category {
    max-width: 640px;
  }
  .price-category__item {
    margin-bottom: 10px;
  }

  .header-btn {
    padding: 11px 20px;
  }

  /* new */

  .header-menu__list {
    gap: 16px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    width: 768px;
  }
  .mobil_none {
    display: none;
  }
  .header-inner .header-nav,
  .header-inner .header-more {
    display: none;
  }
  .header-inner {
    width: 80%; /* Ширина блока занимает 100% ширины родительского элемента */
    max-width: 92vw; /* Максимальная ширина блока равна ширине видимой области экрана */
    box-sizing: border-box;
  }
  .header-toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 24px;
  }
  .header-toggle span {
    top: 0;
    width: 30px;
    height: 2px;
    background: rgba(0, 0, 0, 0.6);
    display: block;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
  }
  .header-toggle span:nth-child(2) {
    top: 10px;
  }
  .header-toggle span:nth-child(3) {
    top: 20px;
  }
  .header .container {
    position: relative;
  }
  .header-mobile {
    padding: 20px;
    position: absolute;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
    opacity: 0;
    top: calc(100%);
    display: block;
    background: #f3f5f6;
    width: calc(100% - 30px);
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .header-search__input {
    width: 100%;
  }
  .header-search {
    margin-right: 0;
  }
  .header-menu {
    margin-top: 20px;
    display: block;
  }
  .header-menu__link {
    font-size: 15px;
  }
  .header-menu__item {
    margin-bottom: 0;
    padding: 0;
    width: 100%;
  }
  .header-menu__item:last-child {
    margin-bottom: 0;
  }
  html.menu-open .header-mobile {
    opacity: 1;
    pointer-events: auto;
  }
  html.menu-open .header-toggle span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
  }
  html.menu-open .header-toggle span:nth-child(2) {
    opacity: 0;
  }
  html.menu-open .header-toggle span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
  }
  .main {
    height: 500px;
  }
  .main .navigation-block {
    margin-top: 350px;
  }
  .catalog {
    padding-top: 60px;
  }
  .section-title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .catalog-list__card {
    width: 225px;
  }
  .catalog-list__item:nth-child(3n + 3) {
    margin-right: 0;
  }
  .catalog-list__item:nth-child(4n + 4) {
    margin-right: 30px;
  }
  .catalog-list__item:last-child {
    margin-right: 0;
  }
  .production-list__item {
    margin-bottom: 30px;
  }
  .info-banner {
    height: 300px;
    margin-top: 30px;
  }
  .navigation-block__item {
    width: 144px;
  }
  section {
    padding: 40px 0;
  }
  .about-content__title {
    font-size: 30px;
    line-height: 35px;
  }
  .info-banner_video::after {
    -webkit-transform: scale(0.5) translate(-80%, -100%);
    transform: scale(0.5) translate(-80%, -100%);
  }
  .contacts-list__item {
    width: 48%;
    margin-bottom: 20px;
  }
  .contacts-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .zone-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .zone-list__item {
    width: 50%;
    margin-bottom: 15px;
  }
  .zone-list__item:nth-child(3),
  .zone-list__item:nth-child(4) {
    margin-bottom: 0;
  }
  .delivery-block__content {
    max-width: 430px;
  }
  .metal-wrapper {
    display: block;
  }
  .metal-content {
    max-width: unset;
  }
  .metal-image {
    max-width: unset;
    margin-top: 20px;
  }
  .certificate-wrapper {
    display: block;
  }
  .certificate-info {
    max-width: unset;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .certificate-block {
    width: 100%;
  }
  .change-image img {
    display: block;
    width: 100%;
  }
  .product-wrapper {
    display: block;
  }
  .product-images {
    width: 100%;
    height: auto;
  }
  .product-info {
    width: 100%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .product-description {
    width: 100%;
    height: auto;
  }
  .product-wrapper {
    margin-top: 30px;
  }
  .price-table__point {
    font-size: 10px;
  }
  .price-table__width {
    width: 75px;
  }
  .price-table__price {
    font-size: 10px;
    width: 70px;
  }
  .price-table__btn {
    width: 65px;
  }
  .price-table__nav {
    width: 65px;
  }
  .price-table__item {
    font-size: 13px;
  }
  .price-table__row {
    padding-top: 10px;
    padding-bottom: 16px;
  }
  .price {
    padding-bottom: 60px;
  }
  .order-form {
    width: 100%;
  }
  .cart-list {
    padding-right: 15px;
  }
  .cart-list .product-counter {
    position: absolute;
    bottom: 10px;
    right: 100px;
  }
  .cart-delete {
    width: 37px;
  }
  .cart-offer {
    margin-top: -40px;
  }
  .price-wrap {
    display: block;
    margin-top: 20px;
  }
  .price-category {
    max-width: unset;
  }
  .price-question {
    width: 100%;
    margin-top: 20px;
  }

  .header-menu__sub-list {
    position: static;
    height: 0;
    width: 100%;
  }

  .header-menu__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-menu__item--has-sublist::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 576px;
  }
  .header-mobile {
    -webkit-box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px;
  }
  .header-inner {
    width: 80%; /* Ширина блока занимает 100% ширины родительского элемента */
    max-width: 92vw; /* Максимальная ширина блока равна ширине видимой области экрана */
    box-sizing: border-box;
  }
  .navigation-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .navigation-block__item {
    width: 50%;
  }
  .navigation-block__item::after {
    display: none;
  }
  .navigation-block__item {
    margin-bottom: 15px;
  }
  .navigation-block__item:nth-child(3n + 3),
  .navigation-block__item:nth-child(4n + 4) {
    margin-bottom: 0;
  }
  .main .navigation-block {
    margin-top: 0;
  }
  .main {
    padding-bottom: 30px;
  }
  .main .container {
    height: 100%;
  }
  .main-wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
  }
  .catalog-list__card {
    width: 100%;
  }
  .catalog-list__item {
    width: 48%;
    margin-bottom: 20px;
    margin-right: 0 !important;
  }
  .catalog-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  section {
    padding: 30px 0;
  }
  .production-list__item {
    height: 155px;
  }
  .production-list__title {
    font-size: 13px;
  }
  .production-list__content {
    padding: 13px 20px;
  }
  .production-list__item {
    margin-bottom: 20px;
  }
  .info-banner {
    height: 200px;
  }
  .map-banner {
    margin-top: 40px;
  }
  .credits-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .credits-item,
  .credits-info {
    width: 50%;
    margin-bottom: 20px;
  }
  .credits-list {
    max-width: unset;
  }
  .credits-wrapper {
    padding-bottom: 20px;
  }
  .steps-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .steps-list__item {
    width: 48%;
    margin-bottom: 30px;
    margin-right: 0;
  }
  .about-content {
    margin-top: 40px;
  }
  .not-found-block__image img {
    width: 300px;
  }
  .not-found-block__content {
    margin-top: 25px;
  }
  .not-found-block__title {
    font-size: 25px;
    line-height: normal;
  }
  .not-found-block__text {
    font-size: 13px;
    margin-top: 10px;
    line-height: normal;
  }
  .not-found-block__link {
    margin-top: 15px;
  }
  .not-found .container {
    padding-bottom: 40px;
  }
  .news {
    padding-bottom: 60px;
  }
  .news-proposal__card {
    display: block;
  }
  .news-proposal__date {
    margin-top: 10px;
  }
  .article-title {
    font-size: 30px;
    line-height: normal;
  }
  .article-content b {
    font-size: 17px;
    line-height: normal;
  }
  .delivery-block__item {
    display: block;
  }
  .delivery-block__image {
    width: 100%;
    position: static;
    height: 250px;
  }
  .delivery-block__content {
    max-width: unset;
    padding: 24px;
  }
  .content {
    padding-bottom: 60px;
  }
  .metal-content__title {
    font-size: 25px;
    line-height: 30px;
  }
  .price-overflow {
    overflow-x: hidden;
  }
  .price-table__header,
  .price-table {
    width: 850px;
  }
  .cart-list__item {
    display: block;
  }
  .cart-offer {
    margin-top: 10px;
    width: 100%;
  }
  .cart-offer__price {
    font-size: 18px;
  }
  .cart-details {
    width: 100%;
    margin-top: 10px;
  }
  .cart-list .product-counter {
    position: block;
    margin-top: 10px;
    top: 30px;
  }
  .order-pay {
    display: block;
  }
  .order-pay__item {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .order-pay__item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 100%;
  }
  .header-contacts {
    display: block;
  }
  .header-contacts__item {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .header-contacts__item:last-child {
    margin-bottom: 0;
  }
  .main .navigation-block {
    padding: 15px;
  }
  .main {
    height: 400px;
  }
  .catalog-list__title {
    font-size: 12px;
  }
  .catalog-list__card {
    padding: 3px 10px 10px 10px;
  }
  .catalog-list__image {
    height: 120px;
  }
  .production-list__item {
    width: 100%;
  }
  .content-text,
  .info-block__text {
    font-size: 12px;
    line-height: 17px;
  }
  .credits-item,
  .credits-info {
    width: 48%;
  }
  .credits-list__value {
    font-size: 17px;
  }
  .credits-logo img {
    width: 120px;
  }
  .credits-item__point {
    font-size: 16px;
  }
  .credits-politic {
    display: block;
  }
  .credits-politic__text {
    margin-bottom: 5px;
  }
  .credits-nav {
    margin-top: 10px;
  }
  .credits-menu__item {
    margin-bottom: 8px;
  }
  .credits-list__item {
    margin-bottom: 15px;
  }
  .credits-list__value {
    font-size: 13px;
    line-height: 100%;
  }
  .credits-wrapper {
    padding-top: 20px;
  }
  .credits-list__point {
    margin-top: 6px;
  }
  .content {
    padding-bottom: 50px;
  }
  .credits-wrapper {
    padding-bottom: 10px;
  }
  .credits-menu__link {
    line-height: 14px;
  }
  .credits-nav {
    margin-top: 8px;
  }
  .contacts-list__item {
    width: 100%;
  }
  .politic {
    padding-top: 32px;
    padding-bottom: 60px;
  }
  .article-title {
    font-size: 25px;
    line-height: 25px;
  }
  .article-content b {
    font-size: 15px;
  }
  .article {
    padding-bottom: 50px;
  }
  .zone-list__item {
    width: 100%;
    margin-bottom: 15px;
  }
  .zone-list__item:nth-child(3) {
    margin-bottom: 15px;
  }
  .zone-list__item:nth-child(4) {
    margin-bottom: 15px;
  }
  .zone-list__item:last-child {
    margin-bottom: 0;
  }
  .delivery-block__image {
    height: 200px;
  }
  .catalog_buyer .container {
    padding-bottom: 40px;
  }
  .catalog_buyer {
    margin-bottom: 0px;
  }
  .steps-list__image {
    height: 100px;
  }
  .steps-list__title {
    font-size: 15px;
    line-height: normal;
  }
  .catalog_search {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .certificate-block__wrap {
    display: block;
  }
  .certificate-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
  .certificate-block__btn {
    width: 100%;
  }
  .cart-list .product-counter {
    position: block;
    margin-top: 10px;
    top: 30px;
  }
  .cart-list__item {
    padding: 20px;
    padding-right: 45px;
  }
  .cart-list__image {
    margin-right: 10px;
    width: 60px;
    height: 50px;
  }
  .cart-info {
    display: block;
  }
  .cart-info__item {
    margin-right: 0;
    margin-bottom: 14px;
  }
  .cart-info__item:last-child {
    margin-bottom: 0;
  }
  .order-form__row {
    display: block;
  }
  .order-form__item {
    width: 100%;
  }
  .order-submit__wrap {
    display: block;
  }
  .order-btn {
    width: 100%;
  }
  .cart-info__checkbox {
    margin-top: 10px;
  }
  .order {
    padding-bottom: 60px;
  }
  .order-block svg {
    margin-right: 15px;
  }
  .price-category__item {
    width: 33%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .price-category__item {
    padding: 0 5px;
  }
  .price-category .price-category__link {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .price-category__link svg {
    margin-right: 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .cart-comment {
    margin-top: 20px;
  }

  .modal__form--info {
    flex-direction: row;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }

  .modal__form-group-info {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .modal__info-wrap {
    margin: 0 auto;
  }

  .modal__add-btn {
    max-width: 100%;
    height: 40px;
  }

  .products-category__wraper {
    flex-direction: column;
  }
}

@media screen and (max-width: 418px) {
  .cart-list .product-counter {
    position: absolute;
    width: 35%;
    bottom: 10px;
    right: 50px;
  }
  .product-counter__btn {
    width: 45px;
    height: 39px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    cursor: pointer;
    color: #454f58;
  }
  .product-counter__input--dark-gray {
    background: rgba(69, 79, 88, 0.1);
    color: #454f58;
    text-align: center;
    height: 45px !important;
    width: 42px;
    cursor: unset;
  }
}
/*# sourceMappingURL=media.css.map */
