@media screen and (max-width: 1200px) {
    .header__logo img {
      max-height: 60px;
      width: auto !important;
    }
    
    .catalog-item-nav {
      padding: 15px;
    }
    
    footer {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .header-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      z-index: 100;
      flex-direction: column;
      background: #1f4548;
      justify-content: space-around;
      transition: all 0.3s ease-in-out;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .h2-horizontal-mark {
        padding-left: 75px;
    }
    
    .h2-horizontal-mark:before {
        width: 60px;
    }
    
    .hamburger {
        font-size: 30px;
        margin-top: 8px;
        position: relative;
        z-index: 1000;
    }
    
    .breadcrumbs li {
      display: none;
    }
    
    .product-item__params .row {
      margin-left: 0;
      margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .home-sales-slider__title {
      font-size: 20px;
    }
    
    .home-slider__item-inner h3 {
      font-size: 32px;
    }
    
    .home-slider__item-inner p {
        padding-left: 0;
    }
    
    .editor img {
      max-width: 100%;
      height: auto;
      margin: 20px 0 40px 0;
    }
}

@media screen and (max-width: 576px) {
    .contacts {
      flex-direction: column;
    }
    
    .contacts__phones,
    .contacts__map {
      width: 100%;
    }
    
    .product-item {
      flex-direction: column;
      align-items: center;
    }
}