main > section.no-img-listings {
  margin-top: 0;
}

.no-img-listings {
  background: #fff2f5;
  margin-top: 0;
}
.no-img-listings ul {
  padding: 0;
  display: none;
  padding-top: 16px;
}
.no-img-listings ul li {
  list-style: none;
  color: #393B3D;
}
.no-img-listings ul li:not(:last-child) {
  margin-bottom: 8px;
}
.no-img-listings .nil-list {
  position: relative;
  padding: 24px 0;
  height: 100%;
}
.no-img-listings .nil-list.first {
  padding-top: 0;
}
.no-img-listings .nil-list .nill-title {
  position: relative;
  z-index: 2;
}
.no-img-listings .nil-list .nill-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url("../images/icons/e-down-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 10px;
  transition: 0.4s;
}
.no-img-listings .nil-list .nill-title.active::before {
  transform: translateY(-50%) rotate(180deg);
}
.no-img-listings .nil-list .nill-title h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0;
  max-width: calc(100% - 60px);
}
.no-img-listings .nil-list::before {
  position: absolute;
  content: "";
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.no-img-listings [class^=col-]:not(:first-child) .nil-list::before {
  border-top: 1px solid #c0c0c0;
}

@media screen and (min-width: 992px) {
  .no-img-listings ul {
    display: block;
  }
  .no-img-listings .nil-list {
    padding: 0 0;
  }
  .no-img-listings .nil-list .nill-title {
    pointer-events: none;
  }
  .no-img-listings .nil-list .nill-title::before {
    content: none;
  }
  .no-img-listings .nil-list .nill-title h4 {
    font-size: 20px;
    line-height: 30px;
    max-width: unset;
  }
  .no-img-listings .nil-list::before {
    height: 100%;
    left: -16px;
    right: unset;
    top: 0;
    bottom: 0;
    border-top: none;
  }
  .no-img-listings [class^=col-]:not(:first-child) .nil-list::before {
    border-left: 1px solid #c0c0c0;
  }
}