.przeplataniec-box {
  margin: 4em auto 4vh auto;
  max-width:1500px;
}
.przeplataniec-box .item {
  clear: both;
  padding: 0px;
  overflow: hidden;
  display: flex;
}
.przeplataniec-box .item > * {
  width: 50%;
  box-sizing: border-box;
}
.przeplataniec-box .img > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.przeplataniec-box .item:nth-child(2n) > *:last-child,
.przeplataniec-box .item:nth-child(2n + 1) > *:first-child {
  padding: 0px 2% 0px 2%;
}
.przeplataniec-box .content{
	display:flex;
	  align-items:center;
}
.przeplataniec-box .content .description{
  color: #1d1c1b;
  padding: 15px 0px;
  line-height: 28px;
}
@media screen and (max-width: 560px) {
 .przeplataniec-box{
	 margin-top:0px;
 } 
  .przeplataniec-box .item {
    width: 96%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 2% 30px 2%;
  }
  .przeplataniec-box > .item > * {
    width: 100%;
  }
  .przeplataniec-box .item:nth-child(2n) > * {
    order: 2;
  }
  .przeplataniec-box .item:nth-child(2n) > * + * {
    order: 1;
  }
  .przeplataniec-box .item:nth-child(2n) > *:last-child,
  .przeplataniec-box .item:nth-child(2n + 1) > *:first-child {
    padding: 0px;
  }
}
