```css
.intec-banners.main .banners-left,
.intec-banners.main .banners-right,
.intec-banners.main .banners-desktop,
.intec-banners.main .banners-mobile,
.intec-banners.main .banners-mobile-content {
  position: relative;
  border-radius: 0px;
  overflow: hidden; /* картинка не вылезет за границы */
}

.intec-banners.main .banners-mobile picture,
.intec-banners.main .banners-mobile picture img {
  border-radius: 30px;
  overflow: hidden;
  display: block;
}

/* Десктоп */
@media (min-width: 769px) {
  .intec-banners.main .banners-mobile {
    display: none;
  }
}

/* Мобильные устройства */
@media (max-width: 768px) {
  .intec-banners.main .banners-desktop {
    display: none;
  }

  .intec-banners.main .banners-right,
  .intec-banners.main .banners-left {
    display: none;
  }

  .intec-banners.main .banners-mobile {
    display: block;
  }

  .intec-banners.main .banners-mobile picture img {
    height: 330px;
    width: 100%;
    object-fit: cover;
  }

  .intec-banners.main .banners-mobile .item-header-over {
    color: var(--color-neutral-semi-dark);
    padding-top: 32px;
    padding-bottom: 8px;
  }

  .intec-banners.main .banners-mobile .item-header {
    font-size: 1.3rem;
  }

  .intec-banners.main .banners-mobile .item-description {
    font-size: 1rem;
    padding-top: 16px;
    padding-bottom: 32px;
  }

  .intec-banners.main .banners-mobile .item-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 32px;
  }

  .intec-banners.main .banners-mobile .item-form-button {
    color: var(--color-neutral-dark);
    border: 1px solid var(--color-neutral-dark);
    background: transparent;
  }

  .intec-banners.main .banners-mobile .items {
    --swiper-pagination-bullets-offset: auto;
  }

  .intec-banners.main .banners-mobile .items .swiper-pagination-horizontal.swiper-pagination-bullets {
    top: 300px;
  }

  .intec-banners.main .item-text {
    padding-right: 0;
    text-align: center;
  }

  .intec-banners.main [data-padding=true] .items {
    width: calc(100% + 20px) !important;
  }

  .intec-banners.main [data-padding=false] .items {
    width: 100% !important;
  }
}
```
/* Кнопка на баннере — цвет */
.intec-banners.main 
.blocks-standard-1 
.item[data-scheme=white] 
.item-form-button {
  position: relative;
  color: #005892;
}

.intec-banners.main 
.blocks-standard-1 
.item[data-scheme=white] 
.item-form-button::before {
  background-color: #005893;
  border-color: #005893;
}

/* Кнопка в баннере INTEC */
.intec-banners.main 
.blocks-standard-1 
.item[data-scheme=white] 
.item-form-button.ui-button {
  background-color: #005893 !important;
  border-color: #005893 !important;
  color: #ffffff !important;
}
