.list {
  width: 100%;
}

.list__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.list__item {
  margin: 0 20px;
}

.list__item:nth-child(1) {
  order: 1;
}

.list__item:nth-child(2) {
  order: 1;
}

@media (min-width: 300px) {
  .list__item:nth-child(2) {
    order: 2;
  }
}

@media (min-width: 1200px) {
  .list__item:nth-child(2) {
    order: 1;
  }
}

.list__item:nth-child(3) {
  order: 1;
}

.list__item-size {
  width: 410px;
  margin-top: 80px;
}

@media (min-width: 300px) {
  .list__item-size {
    width: 410px;
    margin-top: 0px;
  }
}

@media (min-width: 576px) {
  .list__item-size {
    width: 410px;
    margin-top: 0px;
  }
}

@media (min-width: 768px) {
  .list__item-size {
    width: 440px;
    margin-top: 0px;
  }
}

@media (min-width: 1200px) {
  .list__item-size {
    width: 410px;
    margin-top: 80px;
  }
}

.list__item ul li {
  display: block;
  margin-bottom: 50px;
  padding: 9px 0 0 88px;
  background: url("../../assets/img/checkbox70.png")no-repeat;
  background-position: left top;
  background-size: 70px 70px;
  min-height: 75px;
  line-height: 23px;
  font-size: 18px;
}

.list__item-img {
  object-fit: cover;
  object-position: center;
}

