
.nasze-marki-section {
  position: relative;
  margin: 10em auto;
  display: flex;
  flex-direction: row
}

.nm-text {
  position: relative;
  background-color: #F5F6F7
}

.nm-image {
  position: relative;
  background-image: linear-gradient(90deg, #0085D2 0%, #00ABEC 100%)
}

.nm-image img {
  inset: auto;
  width: 70%;
  object-fit: contain;
  z-index: 5;
}

.nm-image-triangle-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  aspect-ratio: 7/12;
  background-color: #F5F6F7;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  z-index: 5
}

.nm-image-triangle-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  aspect-ratio: 7/12;
  background-color: #F5F6F7;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 5
}

@media (max-width:1023px) {

  .nm-image-triangle-left::before,
  .nm-image-triangle-right::before {
    height: 50%;
    width: 100%;
    bottom: -1px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%)
  }

  .nasze-marki-section {
    flex-direction: column;
    height: auto
  }

  .nm-image {
    order: 0
  }

  .nm-image img {
    padding: 40px;
  }

  .nm-text {
    order: 1;
    padding: 1.5rem
  }
}