.renderboxes-cards-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

.renderboxes-cards-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #101010;
  border: 1px solid #474747;
}

.card-item-img-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transform-origin: center bottom;
}

.card-item-img-container img {
  height: 100%;
  object-fit: cover;
}

.renderboxes-card-item {
  position: relative;
  overflow: hidden;
  border: none;
}

.renderboxes-card-item:nth-child(1) {
  border-right: 1px solid #474747;
  border-bottom: 1px solid #474747;
}

.renderboxes-card-item:nth-child(2) {
  border-bottom: 1px solid #474747;
}

.renderboxes-card-item:nth-child(3) {
  border-right: 1px solid #474747;
}

.renderboxes-card-item:nth-child(4) {
}

.renderboxes-item-group {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 500px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.renderboxes-item-group h3 {
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
}

.catchline {
  font-size: 22px;
  font-weight 500;
  line-height: 1.5;
  display: inline-flex;
  margin-bottom: 24px;
}

.details-chip {
  display: inline-flex;
  background: #158DF6;
  border-radius: 6px;
  padding: 4px 10px;
  margin-right: 8px;
}

@media screen and (max-width: 760px) {
  .renderboxes-cards-content {
    grid-template-columns: 1fr;
  }
}

