/* Responsive Design */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}
@media only screen and (min-width: 1020px) {

}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

}

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
  }
  h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    color: #28a745;
    font-weight: 600;
    font-size: 20px;
  }
  h1 {
    font-weight: 600;
    text-transform: none;
    font-size: 20px;
    line-height: 1;
    display: block;
  }
  h1.name {
      margin: 15px 0px;
      font-size: 65px;
  }
  h2 {
    font-size: 16px;
  }
  h2 span {
    font-size: 16px;
  }
  h3 {
    font-size: 14px;
  }
  h3 span {
    font-size: 14px;
  }
  section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  section#main-slide {
      position: relative;
      width: 100%;
      height: 90vh;
      overflow: hidden;
  }
  .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      color: white;
      padding: 30px 30px;
      background: rgba(0, 0, 0, 0.4);
      height: 100%;
      display: flex;
      align-items: center;
      flex-direction: row;
      border-radius: 10px;
      flex-wrap: nowrap;
      justify-content: space-between;
  }

  #icon-block .icon__block-wrapper {
    width: 50%;
  }
  #advantages .card {
      width: 100%;
  }
  .com-content-article__body .page-header h1 {
    font-size: 32px;
  }
  .com-content-article__body h2 {
    font-size: 24px;
  }
  .com-content-article__body .page-header .page-header-adv {
    font-size: 14px;
    line-height: 1.6;
  }
  .com-content-article__body .content__inner section:nth-child(2n) img,
  .com-content-article__body .content__inner section:nth-child(2n+1) img {
    padding: 15px 0px 15px 0px;
    width: 100%;
    float: none;
  }
  .px-15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .content__article section {
    padding: 15px 15px;
  }
  .com-content-article__body .page-header {
    padding: 30px 15px;
  }
  .commercial__title {
    font-size: 24px;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .commercial__inner {
    display: flex;
    flex-direction: column!important;
    flex-wrap: nowrap;
  }
  .commercial__inner-block-img-wrapper {
    display: none;
  }
  .video__img-ppr {
    width: 130px;
  }
  .feat__wrapper {
    position: relative;
    display: flex;
    height: 135px;
    padding: 15px;
    margin-bottom: 30px;
    background: #f6f7f8;
    border-radius: 10px;
    border-left: 2px solid #28a745;
    border-top: 2px solid #28a745;
    border-top-style: dashed;
    border-top-right-radius: 25px;
    border-right: 2px solid #28a745;
    border-right-style: dashed;
    border-bottom: 2px solid #28a745;
    border-bottom-style: dashed;
    transition: 0.6s;
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    -ms-transition: all 0.6s ease-in-out 0s;
    -o-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
    flex-wrap: wrap;
    align-content: flex-start;
  }
}



/* === Базовые стили (xs, <576px) === */
/* === sm (≥576px) === */
@media (min-width: 576px) {
    /* Стили для планшетов и узких экранов */

}

/* === md (≥768px) === */
@media (min-width: 768px) {
    /* Стили для средних планшетов и небольших ноутбуков */

}

/* === lg (≥992px) === */
@media (min-width: 992px) {
    /* Стили для десктопов и больших планшетов */

}

/* === xl (≥1200px) === */
@media (min-width: 1200px) {
    /* Стили для широких экранов */

}

/* === xxl (≥1400px) === */
@media (min-width: 1400px) {
    /* Стили для очень широких мониторов и 4K-дисплеев */

}

/* === Дополнительные медиа-запросы (max-width) для нисходящего подхода === */
/* Иногда требуется переопределить стили только для экранов меньше определённого размера */

/* Для экранов меньше 576px (xs) */
@media (max-width: 575.98px) {
    /* Специфичные стили только для самых маленьких устройств */

}

/* Для экранов меньше 768px (sm и ниже) */
@media (max-width: 767.98px) {
    /* Стили, которые применяются до планшетного размера */
    .navigation-block {
      flex-direction: column;
    }
    .product-listing .product-thumb {
      flex-direction: column!important;
      align-content: flex-start;
      align-items: start!important;
    }
    .product-listing .product-thumb .image {
      display: none;
    }
    .product-listing .product-thumb .name-wrap,
    .product-listing .product-thumb .price {
      width: 100%!important;
      margin-bottom: 15px;
      text-align: left!important;
    }
    .com-content-article__body .content__inner, .com-content-article__body .content__inner-blog {
      margin-bottom: 15px;
    }
}

/* Для экранов меньше 992px (md и ниже) */
@media (max-width: 991.98px) {
    /* Стили для планшетов и телефонов */

}

/* Для экранов меньше 1200px (lg и ниже) */
@media (max-width: 1199.98px) {
    /* Стили для всех экранов, кроме широких */

}

/* Для экранов меньше 1400px (xl и ниже) */
@media (max-width: 1399.98px) {
    /* Стили до ультрашироких мониторов */

}

/* === Ориентация (альбомная/портретная) — полезно для мобильных устройств === */
@media (orientation: landscape) {
    /* Стили для горизонтальной ориентации */

}

@media (orientation: portrait) {
    /* Стили для вертикальной ориентации */

}

/* === Ретина-дисплеи (высокая плотность пикселей) === */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Стили для чёткой графики на Retina-экранах */

}
